You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
* rpn.h: a header file for rpn.c
|
|
*/
|
|
|
|
#ifndef RPN_H
|
|
#define RPN_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
bool rpn_eval (char rpn[]);
|
|
bool rpn_eval_assoc (char rpn[], uint64_t task);
|
|
bool rpn_eval_unassoc (char rpn[], uint64_t task);
|
|
|
|
#endif
|