I was wondering what the best way to initialize this struct is with C90, while still keeping it neat.

In my header file, call it test.h, I have the following struct defined:

 struct s_test_cfg{
      char *a[3];
      char *b[3];
      char *c[3];
 }

Then I have it declared as an extern struct so that I can initialize it globally in the .c file:

 extern struct s_test_cfg test_cfg;

Now in my .c file, I want to be able to declare something like this globally (obviously what I'm about to write is unsupported in C90):

 struct s_test_cfg test_cfg =
 { .a = {"a", "b", "c"},\
   .b = {"d", "e", "f"},\
   .c = {"g", "h", "i"} };

This obviously makes it very neat and transparent as to what you're trying to do. How can I initialize the global struct in my C file that is also as clean as this syntax? Thanks.

link|improve this question

what compiler do you use? – osgx Jul 8 '11 at 13:21
GCC but we want to keep it C90 since everything else in the project is written for C90 compatibility. – Jack Jul 8 '11 at 13:24
In our project we are shifting even to gcc-only extensions (some are only in gcc >= 4.5), because the probability of using another compiler is very low. – osgx Jul 8 '11 at 14:13
Note: there's no need for the `\` continuation character in your initialization (unless it's actually part of a macro that spans multiple lines). – Michael Burr Jul 8 '11 at 14:28
feedback

2 Answers

up vote 3 down vote accepted
struct s_test_cfg test_cfg = {
    { "a", "b", "c" },  /* .a */
    { "d", "e", "f" },  /* .b */
    { "g", "h", "i" },  /* .c */
};

is probably the cleanest option (short of getting yourself a C99 compiler; GCC and Intel C both support C99).

link|improve this answer
I could have sworn I tried this before multiple times and got compiler errors about braces around scalar initializers, but it seems to work now for whatever reason, go figure. Thank you for confirming that this would work. – Jack Jul 8 '11 at 13:24
feedback

You can treat a struct as an array

i.e. same code

struct s_test_cfg test_cfg = {
 /* a = */ {'a','b','c'},
 /* b = */ {'d','e','f'},
 /* c = */ {'g','h','i'},
 /* d = */ {'j','k','l'}, };

Here you initialize in order, and uses comments to label each variable

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.