X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=gmqcc.h;h=97f0e4d1774be599c661fe409e18cf1e7522f853;hb=fe14d1b056935d726cca09b2c0f2607c831244ef;hp=8925a09f23d34d8ead889d7efc0857246993fb39;hpb=9cc4fe1ed246e3c37af7cbd7245b0b413372f3b9;p=xonotic%2Fgmqcc.git diff --git a/gmqcc.h b/gmqcc.h index 8925a09..97f0e4d 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -213,9 +213,10 @@ void *stat_mem_allocate (size_t, size_t, const char *, const char *); #define util_isprint(a) (((unsigned)(a)-0x20) < 0x5F) #define util_isspace(a) (((a) >= 9 && (a) <= 13) || (a) == ' ') -bool util_strupper (const char *); -bool util_strdigit (const char *); -void util_endianswap (void *, size_t, unsigned int); +bool util_strupper(const char *); +bool util_strdigit(const char *); + +void util_endianswap(void *, size_t, unsigned int); size_t util_strtocmd (const char *, char *, size_t); size_t util_strtononcmd (const char *, char *, size_t);