defensive-coding-guide/modules/ROOT/examples/C-Globals-String_Array.adoc
2022-01-13 20:42:40 +01:00

8 lines
89 B
Text

static const char *const string_list[] = {
"first",
"second",
"third",
NULL
};