From 82e5dc156547bbb106208c3a0662267c94bf1889 Mon Sep 17 00:00:00 2001 From: belliash Date: Mon, 10 Sep 2018 23:02:25 +0200 Subject: [PATCH] Add SyStrtok() declaration. --- include/ph7int.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ph7int.h b/include/ph7int.h index 30ff7c5..0fa1b92 100644 --- a/include/ph7int.h +++ b/include/ph7int.h @@ -1894,6 +1894,7 @@ PH7_PRIVATE sxi32 SyByteListFind(const char *zSrc, sxu32 nLen, const char *zList PH7_PRIVATE sxi32 SyByteFind2(const char *zStr, sxu32 nLen, sxi32 c, sxu32 *pPos); PH7_PRIVATE sxi32 SyByteFind(const char *zStr, sxu32 nLen, sxi32 c, sxu32 *pPos); PH7_PRIVATE sxu32 SyStrlen(const char *zSrc); +PH7_PRIVATE char *SyStrtok(char *str, const char *sep); #if defined(PH7_ENABLE_THREADS) PH7_PRIVATE const SyMutexMethods *SyMutexExportMethods(void); PH7_PRIVATE sxi32 SyMemBackendMakeThreadSafe(SyMemBackend *pBackend, const SyMutexMethods *pMethods);