Marco Aurélio Graciotto Silva
Marco Aurélio Graciotto Silva
The first issue is probably related to the gflags library you are using. The second issue is because your system provides a version of GSL other than the expected by...
Example: ``` #include #include #include long int getPrevNumber(long int x) { char buffer[1024]; sprintf(buffer,"%ld",x); int count[16] = {}; int sizeBuffer = strlen(buffer); long int prev = 0; int i=0; for(i=0;i=0;j--)...
Another example. In this one it fails to parse the functions when calling the function long2char within isPrime: ``` long int isPrime(long int N) { long int* Prime = (long...
Parsing of array declarations is also somewhat faulty. Empty array declaration does not work (char b[2] = {}), but this works: char b[2] = {0,0};
Parser also seems buggy when handling spaces: ``` char int2char( int i ) { if ( i < 0 ) { return '~'; } if ( i < 10 )...
Full examples. [examples.zip](https://github.com/magsilva/proteum/files/182175/examples.zip)