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

/illumos-gate/usr/src/lib/libtecla/common/
H A Dchrqueue.h44 typedef struct GlCharQueue GlCharQueue; typedef in typeref:struct:GlCharQueue
49 GlCharQueue *_new_GlCharQueue(void);
54 GlCharQueue *_del_GlCharQueue(GlCharQueue *cq);
59 int _glq_append_chars(GlCharQueue *cq, const char *chars, int n,
65 void _glq_empty_queue(GlCharQueue *cq);
70 int _glq_char_count(GlCharQueue *cq);
99 GlqFlushState _glq_flush_queue(GlCharQueue *cq, GlWriteFn *write_fn,
106 const char *_glq_last_error(GlCharQueue *c
[all...]
H A Dchrqueue.c71 struct GlCharQueue { struct
87 * Create a new GlCharQueue object.
90 * return GlCharQueue * The new object, or NULL on error.
92 GlCharQueue *_new_GlCharQueue(void)
94 GlCharQueue *cq; /* The object to be returned */
98 cq = malloc(sizeof(GlCharQueue));
129 * Delete a GlCharQueue object.
132 * cq GlCharQueue * The object to be deleted.
134 * return GlCharQueue * The deleted object (always NULL).
136 GlCharQueue *_del_GlCharQueu
[all...]

Completed in 67 milliseconds