#include <stdarg.h>
#include <lal/LALDatatypes.h>
#include <lal/LALRCSID.h>
Include dependency graph for StringVector.h:

Go to the source code of this file.
Functions | |
| NRCSID (STRINGVECTORH,"$Id: StringVector.h,v 1.1 2008/02/22 16:11:07 reinhard Exp $") | |
| LALStringVector * | XLALCreateStringVector (const CHAR *str1,...) |
| Create a StringVector from the list of strings passed as arguments. | |
| LALStringVector * | XLALAppendString2Vector (LALStringVector *vect, const CHAR *string) |
| Append the given string to the string-vector (XLAL interface), return pointer to the resulting string-vector, or NULL on error. | |
| void | XLALDestroyStringVector (LALStringVector *vect) |
| XLAL-interface: Free a string-vector ;). | |
| int | XLALSortStringVector (LALStringVector *strings) |
| Sort string-vector alphabetically. | |
| LALStringVector * | XLALParseCSV2StringVector (const CHAR *CSVlist) |
| Parse a list of comma-separated values (CSV) into a StringVector. | |
Definition in file StringVector.h.
| NRCSID | ( | STRINGVECTORH | , | |
| "$Id: StringVector. | h, | |||
| v 1.1 2008/02/22 16:11:07 reinhard Exp $" | ||||
| ) |
| LALStringVector* XLALCreateStringVector | ( | const CHAR * | str1, | |
| ... | ||||
| ) |
Create a StringVector from the list of strings passed as arguments.
Definition at line 108 of file StringVector.c.
| LALStringVector* XLALAppendString2Vector | ( | LALStringVector * | vect, | |
| const CHAR * | string | |||
| ) |
Append the given string to the string-vector (XLAL interface), return pointer to the resulting string-vector, or NULL on error.
| vect | input string-vector to append to |
| string | string to append |
Definition at line 62 of file StringVector.c.
| void XLALDestroyStringVector | ( | LALStringVector * | vect | ) |
| int XLALSortStringVector | ( | LALStringVector * | strings | ) |
| LALStringVector* XLALParseCSV2StringVector | ( | const CHAR * | CSVlist | ) |
Parse a list of comma-separated values (CSV) into a StringVector.
Definition at line 220 of file StringVector.c.
1.5.2