Advertisement
cd62131

Recursive descent parser for paren Header

Nov 1st, 2013
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #ifndef PAREN_RECUR_H_
  2. #define PAREN_RECUR_H_
  3.  
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6. #include <stdlib.h>
  7.  
  8. bool paren(void);
  9. bool brace(void);
  10.  
  11. #endif /* PAREN_RECUR_H_ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement