blob: a80c62b9515548bed7cc3e787fd358f6f27c3c52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef COMPGEN_H
#define COMPGEN_H
#include "history.h"
#include "string_vec.h"
struct string_vec compgen(void);
struct string_vec compgen_cached(void);
void compgen_history_sort(struct string_vec *programs, struct history *history);
#endif /* COMPGEN_H */
|