Advertisement
BlankOD

Untitled

Feb 18th, 2022
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. /* recognizeExp.h, Gerard Renardel, 29 January 2014 */
  2.  
  3. #ifndef RECOGNIZEEXP_H
  4. #define RECOGNIZEEXP_H
  5.  
  6. int acceptNumber(List *lp);
  7. int acceptIdentifier(List *lp);
  8. int acceptCharacter(List *lp, char c);
  9. int acceptExpression(List *lp, int *degree, int *amountOfVariables, char *variable);
  10. void recognizeExpressions();
  11. void recognizeEquation();
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement