slidescript/src/inc/math.h

17 lines
355 B
C
Raw Normal View History

/*
SlideScript - minimalistic top-down scripting language.
2022-05-17 19:24:54 -07:00
(C) Copyright 2014-2022 Chris Dorman - some rights reserved (GPLv2)
View README file supplied with this software for more details
*/
2021-04-08 02:19:12 -07:00
struct s_expr
{
char arg[MAX_EXPR_LEN+1];
};
2021-04-08 15:58:05 -07:00
typedef struct s_expr EXPR;
2021-04-08 02:19:12 -07:00
void set_expr_arg(int index, char *arg);
char *ss_expr(char *string);