Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move string buffers from 'private to tesh' to 'public in xbt' (I'm gonna use them...
[simgrid.git] / tools / tesh / buff.h
diff --git a/tools/tesh/buff.h b/tools/tesh/buff.h
deleted file mode 100644 (file)
index 55a2e9f..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id$ */
-
-/* buff -- buffers as needed by tesh                                        */
-
-/* Copyright (c) 2007 Martin Quinson.                                       */
-/* All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef TESH_BUFF_H
-#define TESH_BUFF_H
-
-#include "portable.h"
-#include "xbt/sysdep.h"
-#include "xbt/function_types.h"
-#include "xbt/log.h"
-#include "xbt/str.h"
-
-/**
- ** Buffer code
- **/
-typedef struct {
-  char *data;
-  int used,size;
-} s_buff_t, *buff_t;
-
-
-void buff_empty(buff_t b);
-buff_t buff_new(void);
-void buff_free(buff_t b);
-void buff_append(buff_t b, const char *toadd);
-void buff_chomp(buff_t b);
-void buff_trim(buff_t b);
-
-#endif