diff options
Diffstat (limited to 'queue.h')
-rw-r--r-- | queue.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,10 @@ struct queue { void queue_init(struct queue *q); void queue_push(struct queue *q, char *word); void queue_clear(struct queue *q); +#if 0 void queue_processing(const struct queue *q, void (*callback)(char*)); +#endif +int queue_get_word_count(const struct queue *q); +void queue_copy_words_to_args(const struct queue *q, char **cmdline); #endif |