/* 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 #include #include #include #include #include #include #include #include #include #include #include #include "config.h" #include "sbyteswap.h" #include // Networking #include #include #include // For file handling #include #include // For string searching #include void syn_error(char *message); void syn_warn(char *message); long fsize (FILE *in); char *strip_nl(char *string); int file_exists(char *path); int is_dir(char *path); int mkpath(char* file_path, mode_t mode); char *ss_concat(char *str1, char *str2); void parse_args(int argc, char** argv); char *ss_time(); void gen_random_string(char *s, const int len);