SalimMeghani
Primary tabs
My stories
eval_brkt().
void eval_brkt(int *error, char *form, int *start, int *end, int *bracket, int *length) { int loop=0,size=0; char *ecopy=NULL; char *nbrac=NULL; char...
- Read more about eval_brkt().
- Log in to post comments
- 335 reads
find_brkt()
// void find_brkt(int *error, char *form, int *start, int *end, int *bracket, int *length) { int loop, loop2, rgtbrac=0; loop=loop2=0; *length=strlen...
- Read more about find_brkt()
- Log in to post comments
- 261 reads
eval_parser (Part 1).
// Reverse Polish Parser. double eval_parser(char* newyk, int *error) { double answer=0; switc=newyk[x]; if ((switc=='%') && (x==0)) // In...
- Read more about eval_parser (Part 1).
- Log in to post comments
- 277 reads
eval_parser() (Part 2) & Misc. Parser functions.
if (switc=='%' && texas[s-1]=='%') { putcalif('%'); break; } } while (!(switc=='%' && texas[s-1]=='%')); // form3=(char *) calloc ((...
- Read more about eval_parser() (Part 2) & Misc. Parser functions.
- Log in to post comments
- 2596 reads
evaluate_cell().
// Evaluate and store contents of a cell in szBuffer. void evaluate_cell(int column, int row, char type, char *szBuffer, char top, char *genetic) {...
- Read more about evaluate_cell().
- Log in to post comments
- 205 reads