Skip to content

Commit

Permalink
xIni: Add missing function prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
tgsm committed Jun 30, 2024
1 parent b5ba830 commit 5ce226e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/SB/Core/x/xIni.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ struct xIniFile
int8 pathname[256];
};

xIniFile* xIniParse(char* buf, int32 len);
void xIniDestroy(xIniFile* ini);
int32 xIniGetIndex(xIniFile* ini, int8* tok);
int32 xIniGetInt(xIniFile* ini, int8* tok, int32 def);
float32 xIniGetFloat(xIniFile* ini, int8* tok, float32 def);
int8* xIniGetString(xIniFile* ini, int8* tok, int8* def);

#endif

0 comments on commit 5ce226e

Please sign in to comment.