Check-in [8ae9acebbc]

Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:8ae9acebbc516ab1b34261451e1fd91de47ad484
Date: 2008-11-03 21:27:21
User: stephan
Comment:doc changes only
Tags And Properties
Changes
hide diffs unified diffs patch

Changes to src/whclob.h

Old (f98b46c8529ad118) New (f715742de815baf7)
1 #ifndef WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_ 1 #ifndef WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_
2 #define WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_ 1 2 #define WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_ 1
3 #include <stdarg.h> 3 #include <stdarg.h>
4 4
5 /*! @page whclob_page_main whclob: dynamic char array utilities 5 /*! @page whclob_page_main whclob: dynamic char array utilities
209 hidden lines
215 */ 215 */
216 long whclob_init( whclob ** cb, char const * data, long n ); 216 long whclob_init( whclob ** cb, char const * data, long n );
217 217
218 /** 218 /**
219 A simplified form of whclob_init() which allocates a new, empty whclob 219 A simplified form of whclob_init() which allocates a new, empty whclob
220 object and returns it. The caller owns it and must finalize it with | 220 of the given size and returns it. The caller owns it and must finalize it with
221 whclob_finalize(). | 221 whclob_finalize(). On error (out of memory) it returns 0.
| 222 */
| 223 whclob * whclob_new_n( size_t reserved );
| 224
| 225 /**
| 226 Equivalent to whclob_new_n(0).
222 */ 227 */
223 whclob * whclob_new(); 228 whclob * whclob_new();
224 229
225 /** 230 /**
226 See whclob_set_alloc_policy(). 231 See whclob_set_alloc_policy().
680 hidden lines
907 912
908 #ifdef __cplusplus 913 #ifdef __cplusplus
909 } /* extern "C" */ 914 } /* extern "C" */
910 #endif 915 #endif
911 #endif /* WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_ */ 916 #endif /* WANDERINGHORSE_NET_WHCLOB_H_INCLUDED_ */