Changeset 988 for vendor/current/source3/lib/cbuf.h
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/cbuf.h
r740 r988 29 29 #ifndef __CBUF_H 30 30 #define __CBUF_H 31 32 #include <stddef.h>33 #include <stdbool.h>34 #include <stdint.h>35 36 31 37 32 struct cbuf; … … 228 223 * @param[in] s '\0' terminated string of printable characters. 229 224 * 230 * @return num ner of bytes written, -1 on error225 * @return number of bytes written, -1 on error 231 226 */ 232 227 int cbuf_print_quoted_string(cbuf* ost, const char* s); … … 243 238 * @param[in] len number of bytes 244 239 * 245 * @return num ner of bytes written, -1 on error240 * @return number of bytes written, -1 on error 246 241 */ 247 242 int cbuf_print_quoted(cbuf* ost, const char* s, size_t len);
Note:
See TracChangeset
for help on using the changeset viewer.