Searched defs:StringGroup (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dstringrp.h37 * StringGroup objects provide memory for modules that need to
40 * time. Taking advantage of these properties, StringGroup objects
50 typedef struct StringGroup StringGroup; typedef in typeref:struct:StringGroup
59 StringGroup *_new_StringGroup(int segment_size);
63 * StringGroup object.
65 void _clr_StringGroup(StringGroup *sg);
73 char *_sg_store_string(StringGroup *sg, const char *string, int remove_escapes);
78 char *_sg_alloc_string(StringGroup *sg, int length);
81 * Delete a StringGroup objec
[all...]
H A Dstringrp.c61 * StringGroup is typedef'd in stringrp.h.
63 struct StringGroup { struct
75 * Create a new StringGroup object.
85 * return StringGroup * The new object, or NULL on error.
87 StringGroup *_new_StringGroup(int segment_size)
89 StringGroup *sg; /* The object to be returned */
100 sg = (StringGroup *) malloc(sizeof(StringGroup));
123 * Delete a StringGroup object.
126 * sg StringGroup * Th
[all...]

Completed in 122 milliseconds