/* * rpn.h: a header file for rpn.c */ #ifndef RPN_H #define RPN_H #include bool rpn_eval (char rpn[]); #endif