I'm using the ctype library in a C code (no cplusplus defined) and I'm having problems with the function that should point to the character flag table.
The function is imported into the ctype.h file and I don't know where it is defined.
extern _ARMABI_PURE unsigned char **__rt_ctype_table(void);
The problem is that it points to an address where there is nothing (zeros).
Should I use some compilation flags or add some libraries? Do you know where the character flag table is defined?
Thanks.