Add new function to remove non-ascii characters from strings.
[citadel.git] / libcitadel / lib / libcitadel.h
index 02b9c9a4755352b5e3fdedec9daac474e41fdc99..5d3520a7328ea86ac1597dc4e01d0e01665aec19 100644 (file)
@@ -207,6 +207,7 @@ int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for
 const char *ChrPtr(const StrBuf *Str);
 int StrLength(const StrBuf *Str);
 #define SKEY(a) ChrPtr(a), StrLength(a)
+void StrBufAsciify(StrBuf *Buf, const char repl);
 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
 long StrBufPook(StrBuf *Buf, const char* ptr, long nThChar, long nChars, char PookValue);