Add a typedef for char* as string

This commit is contained in:
jeltz 2020-12-28 04:39:16 +01:00
parent bbe74e7ffe
commit 8d77b7434b
Signed by: jeltz
GPG key ID: 800882B66C0C3326

View file

@ -34,6 +34,7 @@
#include <string.h>
typedef float real;
typedef char *string;
/* between(i, n) returns idx between 0 and n-1. */
static inline int between(int idx, int n)