Re-generate all headers with latest scripts/MakeHeader.py

Sync-up missing extern declarations for many functions.
This commit is contained in:
Nathan Scott
2020-08-18 17:41:49 +10:00
parent 579995c7c2
commit 7ac1c709b7
40 changed files with 215 additions and 215 deletions

View File

@ -21,13 +21,13 @@ typedef struct ListItem_ {
extern ObjectClass ListItem_class;
ListItem* ListItem_new(const char* value, int key);
extern ListItem* ListItem_new(const char* value, int key);
void ListItem_append(ListItem* this, const char* text);
extern void ListItem_append(ListItem* this, const char* text);
const char* ListItem_getRef(ListItem* this);
extern const char* ListItem_getRef(ListItem* this);
long ListItem_compare(const void* cast1, const void* cast2);
extern long ListItem_compare(const void* cast1, const void* cast2);
#endif