pass-lang/src/lex/indent.h

15 lines
201 B
C
Raw Normal View History

2022-09-08 16:01:31 -07:00
#ifndef LEX_INDENT_H
#define LEX_INDENT_H
#include <stdbool.h>
#include <stdint.h>
#define MAX_INDENTS 32
_Bool is_newline(char c);
_Bool is_indent(char c);
2022-10-17 10:02:43 -07:00
uint32_t lex_indentation(void);
2022-09-08 16:01:31 -07:00
#endif