cctools
string_array.h
Go to the documentation of this file.
1 /*
2 Copyright (C) 2011- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef STRING_ARRAY_H
8 #define STRING_ARRAY_H
9 
20 char **string_array_new (void);
21 
27 char **string_array_append (char **oarray, const char *str);
28 
29 #endif /* STRING_ARRAY_H */
char ** string_array_new(void)
Create a new empty string array.
char ** string_array_append(char **oarray, const char *str)
Append str to the string array.