From: <zw...@ma...> - 2009-06-24 11:37:59
|
Author: zwelch Date: 2009-06-24 11:37:56 +0200 (Wed, 24 Jun 2009) New Revision: 2394 Modified: trunk/src/helper/membuf.h Log: - Fixes '[<>]' whitespace - Replace '\(\w\)\([<>]\)\(\w\)' with '\1 \2 \3'. Modified: trunk/src/helper/membuf.h =================================================================== --- trunk/src/helper/membuf.h 2009-06-24 09:37:50 UTC (rev 2393) +++ trunk/src/helper/membuf.h 2009-06-24 09:37:56 UTC (rev 2394) @@ -82,14 +82,14 @@ * * Identical to "strtok()" - pass "pBuff = NULL" on second call * - * NOTE: This call is <b>destructive</b> to the buffer. + * NOTE: This call is <b > destructive</b> to the buffer. */ const char *membuf_strtok( struct membuf *pBuf, const char *delim, void **pSave ); /** Return pointer to the memory in the buffer * @param pBuf - buffer * - * NOTE: Thou shall not modify this pointer, it is <b>CONST</b> + * NOTE: Thou shall not modify this pointer, it is <b > CONST</b> */ const void *membuf_datapointer( struct membuf *pBuf ); |