summaryrefslogtreecommitdiffstats
path: root/runtime/stringbuf.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-12-03 17:11:03 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-12-03 17:11:03 +0100
commit4618773be685488e081bebb397db32851dc16782 (patch)
tree744a80610a877eaa0f8ff5f552e17a5cbf0563a3 /runtime/stringbuf.h
parentf871bd135a33c88a013f49402d0af87fb1f1de5d (diff)
downloadrsyslog-4618773be685488e081bebb397db32851dc16782.tar.gz
rsyslog-4618773be685488e081bebb397db32851dc16782.tar.xz
rsyslog-4618773be685488e081bebb397db32851dc16782.zip
milestone: added support for CEE-variables to RainerScript
Diffstat (limited to 'runtime/stringbuf.h')
-rw-r--r--runtime/stringbuf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/stringbuf.h b/runtime/stringbuf.h
index c5130238..df234012 100644
--- a/runtime/stringbuf.h
+++ b/runtime/stringbuf.h
@@ -36,6 +36,7 @@
#define _STRINGBUF_H_INCLUDED__ 1
#include <assert.h>
+#include <libestr.h>
/**
* The dynamic string buffer object.
@@ -57,6 +58,7 @@ typedef struct cstr_s
*/
rsRetVal cstrConstruct(cstr_t **ppThis);
#define rsCStrConstruct(x) cstrConstruct((x))
+rsRetVal cstrConstructFromESStr(cstr_t **ppThis, es_str_t *str);
rsRetVal rsCStrConstructFromszStr(cstr_t **ppThis, uchar *sz);
rsRetVal rsCStrConstructFromCStr(cstr_t **ppThis, cstr_t *pFrom);