/* 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 */ struct s_cmds { char command [MAX_STRING_BUFSIZE]; }; typedef struct s_cmds CMDS; MY_GLOBAL CMDS spipe [MAX_PIPE_CMDS]; void set_cmd(int index, char *cmd); int get_cmd_count(); void ss_piping(char *string);