#ifndef COMPLETION_H #define COMPLETION_H #include #define MAX_CMD_LEN 256 typedef struct comp_ *comp_t; int comp_init(comp_t *); int comp_cleanup(comp_t); int comp_update(comp_t, char *); char *comp_next(comp_t); #endif /* !COMPLETION_H */