blob: 6cc9e3ae292e9564170d22d12500391412557c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef ELM_CODE_PRIVATE_H
# define ELM_CODE_PRIVATE_H
#include "elm_priv.h"
Eina_Bool _elm_code_text_char_is_whitespace(char c);
/* Private parser callbacks */
void _elm_code_parse_setup();
void _elm_code_parse_line(Elm_Code *code, Elm_Code_Line *line);
void _elm_code_parse_file(Elm_Code *code, Elm_Code_File *file);
void _elm_code_parse_reset_file(Elm_Code *code, Elm_Code_File *file);
void _elm_code_parser_free(Elm_Code_Parser *parser);
#endif
|