9 lines
122 B
C
9 lines
122 B
C
#ifndef ONCE_H
|
|
#define ONCE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool eval_string(const char *input, int *res);
|
|
|
|
#endif /* !ONCE_H */
|