Browse Source

- Fixes '[<>]' whitespace

- Replace '\(\w\)\([<>]\)\(\w\)' with '\1 \2 \3'.


git-svn-id: svn://svn.berlios.de/openocd/trunk@2394 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch 15 years ago
parent
commit
dbb0f31abb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/helper/membuf.h

+ 2
- 2
src/helper/membuf.h View File

@@ -82,14 +82,14 @@ int membuf_vsprintf( struct membuf *pBuf , const char *fmt, va_list ap);
*
* 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 );



Loading…
Cancel
Save