cctools
string_array.h
Go to the documentation of this file.
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef STRING_ARRAY_H
8#define STRING_ARRAY_H
9
20char **string_array_new (void);
21
27char **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.