Updated to remove more usless stuff
This commit is contained in:
parent
5b7eb9784b
commit
db0903c3a8
31 changed files with 480 additions and 1058 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/08/22 16:31:53 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -17,27 +17,51 @@
|
|||
|
||||
static inline t_char_range *sym__comment_word_character_set_1(void)
|
||||
{
|
||||
#ifdef static
|
||||
#undef static
|
||||
#define static__REAPPLY
|
||||
#endif
|
||||
static t_char_range val[10] = {{0, 0x08}, {0x0b, 0x1f}, \
|
||||
{'!', '!'}, {'#', '#'}, {'%', '%'}, {'*', ':'}, {'=', \
|
||||
'='}, {'?', '_'}, {'a', '{'}, {'}', 0x10ffff}};
|
||||
#ifdef static__REAPPLY
|
||||
#define static
|
||||
#undef static__REAPPLY
|
||||
#endif
|
||||
|
||||
return (val);
|
||||
}
|
||||
|
||||
static inline t_char_range *sym_word_character_set_1(void)
|
||||
{
|
||||
#ifdef static
|
||||
#undef static
|
||||
#define static__REAPPLY
|
||||
#endif
|
||||
static t_char_range val[9] = {{0, 0x08}, {0x0b, 0x1f}, \
|
||||
{'!', '!'}, {'%', '%'}, {'*', ':'}, {'=', '='}, {'?', \
|
||||
'_'}, {'a', '{'}, {'}', 0x10ffff}};
|
||||
#ifdef static__REAPPLY
|
||||
#define static
|
||||
#undef static__REAPPLY
|
||||
#endif
|
||||
|
||||
return (val);
|
||||
}
|
||||
|
||||
static inline t_char_range *aux_sym__word_no_brace_token1_character_set_2(void)
|
||||
{
|
||||
#ifdef static
|
||||
#undef static
|
||||
#define static__REAPPLY
|
||||
#endif
|
||||
static t_char_range val[10] = {{0, 0x08}, {0x0b, 0x1f}, \
|
||||
{'!', '!'}, {'#', '#'}, {'%', '%'}, {'*', ':'}, {'=', \
|
||||
'='}, {'?', '_'}, {'a', 'z'}, {'~', 0x10ffff}};
|
||||
#ifdef static__REAPPLY
|
||||
#define static
|
||||
#undef static__REAPPLY
|
||||
#endif
|
||||
|
||||
return (val);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue