I'm programming a simple library to return my db user and pass. This all works fine. However, I've already a finished C app, that I want to adjust without putting the new values (user and pass) into every possible function. Hence, I thought I'd simply make them global.
So before my int main() I've got
const char * mySQLUsername = getMySQLPassword();
const char * mySQLPassword = getMySQLUsername();
But because it's a function, my compiler is complaining:
error: initializer element is not constant
How do I work around this problem without having to put in extra code everywhere?