Check-in [5bc9e70e59]

Not logged in

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

Overview
SHA1 Hash:5bc9e70e593c2f13c9ddb0f142f0368d06a8919f
Date: 2008-12-26 10:37:55
User: stephan
Comment:minor doc change only
Tags And Properties
Changes
hide diffs unified diffs patch

Changes to whst.h

Old (115900f7df5f45ce) New (bcc5843ffa858523)
1 #ifndef WANDERINGHORSE_NET_WHST_H_INCLUDED 1 #ifndef WANDERINGHORSE_NET_WHST_H_INCLUDED
2 #define WANDERINGHORSE_NET_WHST_H_INCLUDED 1 2 #define WANDERINGHORSE_NET_WHST_H_INCLUDED 1
3 /** @page whst_page_main whst: reference counting string pool for C 3 /** @page whst_page_main whst: reference counting string pool for C
4 4
5 whst (the WanderingHorse.net String Table) is a small C library for 5 whst (the WanderingHorse.net String Table) is a small C library for
80 hidden lines
86 caller. The caller must free it with whst_destroy_context(). 86 caller. The caller must free it with whst_destroy_context().
87 */ 87 */
88 whst_context * whst_create_context(); 88 whst_context * whst_create_context();
89 89
90 /** 90 /**
91 Clears all items in a context, unconditionally passing them to | 91 Clears all shared strings in a context.
92 their registered destructors. |
93 */ 92 */
94 void whst_clear_context( whst_context * ); 93 void whst_clear_context( whst_context * );
95 94
96 /** 95 /**
97 Like whst_clear_context() , but also frees cx. 96 Like whst_clear_context() , but also frees cx.
33 hidden lines
131 } /* extern "C" */ 130 } /* extern "C" */
132 #endif 131 #endif
133 132
134 133
135 #endif /* WANDERINGHORSE_NET_WHST_H_INCLUDED */ 134 #endif /* WANDERINGHORSE_NET_WHST_H_INCLUDED */