X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b00f93ba23b10b26ed955c8b6a90cf52a2cdb73..6f9d72501fa9d57a34e2d5309adb5d6947182eea:/include/xbt/strbuff.h diff --git a/include/xbt/strbuff.h b/include/xbt/strbuff.h index 7fde727073..eb1f59f29f 100644 --- a/include/xbt/strbuff.h +++ b/include/xbt/strbuff.h @@ -2,8 +2,8 @@ /* strbuff -- string buffers */ -/* Copyright (c) 2007 Martin Quinson. */ -/* All rights reserved. */ +/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. + * 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. */ @@ -15,21 +15,26 @@ #include "xbt/function_types.h" #include "xbt/log.h" #include "xbt/str.h" +#include "xbt/dict.h" /** ** Buffer code **/ typedef struct { char *data; - int used,size; + int used, size; } s_xbt_strbuff_t, *xbt_strbuff_t; -XBT_PUBLIC(void) xbt_strbuff_empty(xbt_strbuff_t b); +XBT_PUBLIC(void) xbt_strbuff_empty(xbt_strbuff_t b); XBT_PUBLIC(xbt_strbuff_t) xbt_strbuff_new(void); -XBT_PUBLIC(void) xbt_strbuff_free(xbt_strbuff_t b); -XBT_PUBLIC(void) xbt_strbuff_append(xbt_strbuff_t b, const char *toadd); -XBT_PUBLIC(void) xbt_strbuff_chomp(xbt_strbuff_t b); -XBT_PUBLIC(void) xbt_strbuff_trim(xbt_strbuff_t b); +XBT_PUBLIC(xbt_strbuff_t) xbt_strbuff_new_from(const char *s); +XBT_PUBLIC(void) xbt_strbuff_free(xbt_strbuff_t b); +XBT_PUBLIC(void) xbt_strbuff_free_container(xbt_strbuff_t b); +XBT_PUBLIC(void) xbt_strbuff_append(xbt_strbuff_t b, const char *toadd); +XBT_PUBLIC(void) xbt_strbuff_chomp(xbt_strbuff_t b); +XBT_PUBLIC(void) xbt_strbuff_trim(xbt_strbuff_t b); +XBT_PUBLIC(void) xbt_strbuff_varsubst(xbt_strbuff_t b, + xbt_dict_t patterns); #endif