X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;ds=sidebyside;f=libcitadel%2Flib%2Fstringbuf.c;h=e4824cf369fd5d64ac8dfd8bf253c2b5cd0ad531;hb=28c9012d1e3ab1d460fdda87d4b0a16423dda99a;hp=8023ab7c7166c0feb54d109a80b692188c442361;hpb=d72c8680f895706d045668a0f4bc5a1edadb467c;p=citadel.git diff --git a/libcitadel/lib/stringbuf.c b/libcitadel/lib/stringbuf.c index 8023ab7c7..e4824cf36 100644 --- a/libcitadel/lib/stringbuf.c +++ b/libcitadel/lib/stringbuf.c @@ -517,7 +517,7 @@ int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars) { } -/** +/* * use strbuf as wrapper for a string constant for easy handling * StringConstant a string to wrap * SizeOfStrConstant should be sizeof(StringConstant)-1 @@ -540,7 +540,7 @@ StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant) } -/** +/* * flush the content of a Buf; keep its struct * buf Buffer to flush */ @@ -555,7 +555,7 @@ int FlushStrBuf(StrBuf *buf) return 0; } -/** +/* * wipe the content of a Buf thoroughly (overwrite it -> expensive); keep its struct * buf Buffer to wipe */ @@ -575,7 +575,7 @@ int FLUSHStrBuf(StrBuf *buf) #ifdef SIZE_DEBUG int hFreeDbglog = -1; #endif -/** +/* * Release a Buffer * Its a double pointer, so it can NULL your pointer * so fancy SIG11 appear instead of random results @@ -639,7 +639,7 @@ void HFreeStrBuf (void *VFreeMe) { * Simple string transformations * *******************************************************************************/ -/** +/* * Wrapper around atol */ long StrTol(const StrBuf *Buf) @@ -652,7 +652,7 @@ long StrTol(const StrBuf *Buf) return 0; } -/** +/* * Wrapper around atoi */ int StrToi(const StrBuf *Buf) @@ -665,7 +665,7 @@ int StrToi(const StrBuf *Buf) return 0; } -/** +/* * Checks to see if the string is a pure number * Buf The buffer to inspect * @returns 1 if its a pure number, 0, if not.