28 lines
842 B
C
28 lines
842 B
C
/*
|
|
SlideScript - minimalistic top-down scripting language.
|
|
(C) Copyright 2014-2021 Chris Dorman - some rights reserved (GPLv2)
|
|
|
|
View README file supplied with this software for more details
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
#define MAX_VAR_NAME_LEN 128
|
|
#define MAX_VAR_NAME_BUFSIZE (MAX_VAR_NAME_LEN + 1)
|
|
#define MAX_STRING_LEN 2048
|
|
#define MAX_STRING_BUFSIZE (MAX_STRING_LEN + 1)
|
|
#define MAX_VAR_DATA_LEN 2048
|
|
#define MAXVARS 2048
|
|
#define MAX_CONCAT_BUF 2048
|
|
#define MAX_READFILE_LEN 2097152
|
|
#define TOKEN '%'
|
|
#define TOKEN_STR "%"
|
|
#define NULLBYTE '\0'
|
|
#define ENCOFFSET 3
|
|
#define ENCSTEPODD 2
|
|
#define ENCSTEPEVEN 2
|