You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but then you have error: string length ‘15446’ is greater than the length ‘4095’ ISO C99 compilers are required to support [-Werror=overlength-strings] and need to ether use a slightly uncommon function fmemopen to read characters from it or do an object oriented layer for reading from a FILE* or a char* like in s - which adds code and complexity.
The text was updated successfully, but these errors were encountered:
Well i got the idea from the problem you had with running sch3 without loading the standard library. This way there would be no extra trouble reading in files from disk, it would just be loaded up already
You can turn all the stdlib scheme code into a C string with this:
but then you have
error: string length ‘15446’ is greater than the length ‘4095’ ISO C99 compilers are required to support [-Werror=overlength-strings]
and need to ether use a slightly uncommon function fmemopen to read characters from it or do an object oriented layer for reading from a FILE* or a char* like in s - which adds code and complexity.The text was updated successfully, but these errors were encountered: