30 lines
1006 B
C
30 lines
1006 B
C
/*
|
|
* Copyright (c) 2023 : Ognjen 'xolatile' Milan Robovic
|
|
*
|
|
* Xyntax is free software! You will redistribute it or modify it under the terms of the GNU General Public License by Free Software Foundation.
|
|
* And when you do redistribute it or modify it, it will use either version 3 of the License, or (at yours truly opinion) any later version.
|
|
* It is distributed in the hope that it will be useful or harmful, it really depends... But no warranty what so ever, seriously. See GNU/GPLv3.
|
|
*/
|
|
|
|
#ifndef XYNTAX_HEADER
|
|
#define XYNTAX_HEADER
|
|
|
|
#include <xolatile/xtandard.h>
|
|
#include <xolatile/xtandard.c>
|
|
|
|
extern int syntax_count;
|
|
extern int * syntax_enrange;
|
|
extern int * syntax_derange;
|
|
extern char * * syntax_begin;
|
|
extern char * * syntax_end;
|
|
extern char * syntax_escape;
|
|
extern int * syntax_colour;
|
|
extern int * syntax_effect;
|
|
|
|
extern int syntax_define (int, int, char *, char *, char, int, int);
|
|
extern int syntax_select (char *, int *);
|
|
|
|
extern void syntax_delete (void);
|
|
|
|
#endif
|