I have a file where a declare a large array of strings. Lets say its in filename.e and has:
static _str g_list[] = {
"String1",
"String2",
...
"StringN"
}
In my main code, the module I load, I have the line at the top:
#include "filename.e";
However, when I change the values of the strings in the array, or even enter gibberish, the module still loads ok with the old values. Why is this so?!