src
unescape.h
Go to the documentation of this file.
1 #ifndef _RE2C_PARSE_UNESCAPE_
2 #define _RE2C_PARSE_UNESCAPE_
3 
4 #include "src/util/c99_stdint.h"
5 
6 namespace re2c {
7 
8 uint32_t unesc_hex (const char * s, const char * s_end);
9 uint32_t unesc_oct (const char * s, const char * s_end);
10 
11 } // namespace re2c
12 
13 #endif // _RE2C_PARSE_UNESCAPE_
uint32_t unesc_oct(const char *s, const char *s_end)
Definition: unescape.cc:49
Definition: bitmap.cc:10
uint32_t unesc_hex(const char *s, const char *s_end)
Definition: unescape.cc:37