diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-26 13:14:03 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-26 13:14:03 +0000 |
commit | 58d50e94455c52385595146e9fa19563b162e912 (patch) | |
tree | b9d40e121d23676bded8b945b8a720de8089b1c9 /stringbuf.h | |
parent | 7dba4b6ffe9b72bf5bb14cdf859cfe9a1c6df5e9 (diff) | |
download | rsyslog-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-x | stringbuf.h | 3 |
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);
|