* Fixed striplt() to only remove leading and trailing blanks, but no others. It...
[citadel.git] / libcitadel / lib / libcitadel.h
index 0f4f6e2d19e6f8ff2fe69d2ff4b7fcdc7c8b6727..12be21c1c6c14dc90114a147b52910c385a9e2de 100644 (file)
@@ -343,7 +343,7 @@ size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int li
 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
 unsigned int decode_hex(char *Source);
 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
-long striplt(char *);
+size_t striplt(char *);
 int haschar(const char *st, int ch);
 void remove_token(char *source, int parmnum, char separator);
 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);