summaryrefslogtreecommitdiffstats
path: root/stringbuf.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-09-26 13:14:03 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-09-26 13:14:03 +0000
commit58d50e94455c52385595146e9fa19563b162e912 (patch)
treeb9d40e121d23676bded8b945b8a720de8089b1c9 /stringbuf.h
parent7dba4b6ffe9b72bf5bb14cdf859cfe9a1c6df5e9 (diff)
downloadrsyslog-58d50e94455c52385595146e9fa19563b162e912.tar.gz
rsyslog-58d50e94455c52385595146e9fa19563b162e912.tar.xz
rsyslog-58d50e94455c52385595146e9fa19563b162e912.zip
added isequal comparison operation; ability to negat comparison operations
fixed some bugs
Diffstat (limited to 'stringbuf.h')
-rwxr-xr-xstringbuf.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/stringbuf.h b/stringbuf.h
index 053f10c7..a5e99392 100755
--- a/stringbuf.h
+++ b/stringbuf.h
@@ -103,7 +103,8 @@ rsRetVal rsCStrAppendInt(rsCStrObj *pThis, int i);
char* rsCStrGetSzStr(rsCStrObj *pThis);
char* rsCStrConvSzStrAndDestruct(rsCStrObj *pThis);
int rsCStrCStrCmp(rsCStrObj *pCS1, rsCStrObj *pCS2);
-int rsCStrSzCmp(rsCStrObj *pCStr, char *sz);
+int rsCStrSzStrCmp(rsCStrObj *pCS1, char *psz, int iLenSz);
+int rsCStrOffsetSzStrCmp(rsCStrObj *pCS1, int iOffset, char *psz, int iLenSz);
int rsCStrLocateSzStr(rsCStrObj *pCStr, char *sz);
int rsCStrLocateInSzStr(rsCStrObj *pThis, char *sz);