Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* recognizeExp.h, Gerard Renardel, 29 January 2014 */
- #ifndef RECOGNIZEEXP_H
- #define RECOGNIZEEXP_H
- int acceptNumber(List *lp);
- int acceptIdentifier(List *lp);
- int acceptCharacter(List *lp, char c);
- int acceptExpression(List *lp, int *degree, int *amountOfVariables, char *variable);
- void recognizeExpressions();
- void recognizeEquation();
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement