blob: 5e36576888086763f077b9a359930c991881ce78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef COMPGEN_H
#define COMPGEN_H
#include "history.h"
#include "string_vec.h"
[[nodiscard("memory leaked")]]
char *compgen(void);
[[nodiscard("memory leaked")]]
char *compgen_cached(void);
void compgen_history_sort(struct string_ref_vec *programs, struct history *history);
#endif /* COMPGEN_H */
|