Patrick Lucas a �crit : > I have a very long #define in C. > > #define XYZ "(a lot of text)" > > Is there a way of writing it on several lines?
const Char *XYZ = "(a lot of text)"; sounds more appropriate. Your long string would only appear once in the compiled code. Using a define will have the compiler insert the said string everywhere it is used. -- Luc Le Blanc -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
