2023-08-22 05:43:24 -04:00
|
|
|
/*
|
2023-10-06 13:41:24 -04:00
|
|
|
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.
|
|
|
|
*/
|
2023-08-22 05:43:24 -04:00
|
|
|
|
2023-08-25 17:00:12 -04:00
|
|
|
#ifndef XYNTAX_HEADER
|
|
|
|
#define XYNTAX_HEADER
|
2023-08-23 21:12:55 -04:00
|
|
|
|
2023-11-03 04:49:33 -04:00
|
|
|
extern int syntax_define (int enrange, int derange, char * begin, char * end, char escape, int colour, int effect);
|
2023-08-23 21:12:55 -04:00
|
|
|
|
2023-11-03 04:49:33 -04:00
|
|
|
extern int syntax_select (char * string, int * length);
|
2023-08-28 09:03:06 -04:00
|
|
|
|
2023-08-22 05:43:24 -04:00
|
|
|
#endif
|