fu-shell/lisp_balance.h
2024-03-03 13:46:08 +01:00

12 lines
281 B
C

#ifndef LISP_BANALNCE_H
#define LISP_BANALNCE_H
// Return values:
enum {
FULL = 0, // the provided statement seems complete
PARTIAL, // the provided statement is not closed
BROKEN, // the provided is all fucked'n'shieet
};
void lb_set_input(char * const s);
#endif