Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Split the string related function to their own header file. It will ease their docume...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 22 Mar 2007 16:04:20 +0000 (16:04 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 22 Mar 2007 16:04:20 +0000 (16:04 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3337 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/xbt/str.h [new file with mode: 0644]
include/xbt/sysdep.h

diff --git a/include/xbt/str.h b/include/xbt/str.h
new file mode 100644 (file)
index 0000000..ae25643
--- /dev/null
@@ -0,0 +1,32 @@
+/* $Id$ */
+
+/* str.h - XBT string related functions.                                    */
+
+/* Copyright (c) 2004-7, Martin Quinson and Arnaud Legrand.                 */
+/* 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. */
+
+#include "xbt/misc.h"
+
+#ifndef XBT_STR_H
+#define XBT_STR_H
+
+SG_BEGIN_DECL()
+
+XBT_PUBLIC(int) asprintf  (char **ptr, const char *fmt, /*args*/ ...) _XBT_GNUC_PRINTF(2,3);
+XBT_PUBLIC(int) vasprintf (char **ptr, const char *fmt, va_list ap);
+XBT_PUBLIC(char*) bprintf   (const char*fmt, ...) _XBT_GNUC_PRINTF(1,2);
+
+#if defined(_WIN32) || !defined(__GNUC__)
+XBT_PUBLIC(long) getline(char **lineptr, size_t *n, FILE *stream);
+#endif
+
+SG_END_DECL()
+
+#endif /* XBT_STR_H */
+
+
+
+
index 524bfb2..a159ff3 100644 (file)
    
 #include "xbt/misc.h"
 #include "xbt/asserts.h"
+#include "xbt/str.h"
   
 SG_BEGIN_DECL()
 
-/* FIXME: better place? */
-extern int   asprintf  (char **ptr, const char *fmt, /*args*/ ...) _XBT_GNUC_PRINTF(2,3);
-extern int vasprintf (char **ptr, const char *fmt, va_list ap);
-XBT_PUBLIC(char*) bprintf   (const char*fmt, ...) _XBT_GNUC_PRINTF(1,2);
-
-#if defined(_WIN32) || !defined(__GNUC__)
-XBT_PUBLIC(long) getline(char **lineptr, size_t *n, FILE *stream);
-#endif
-
 /* They live in asserts.h, but need to be declared before this module.
    double declaration to cut dependency cycle */
 /**