-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsqlhist.h
24 lines (18 loc) · 841 Bytes
/
sqlhist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __SQLHIST_H
#define __SQLHIST_H
struct sqlhist;
const char *sqlhist_start_event(struct sqlhist *sqlhist);
const char *sqlhist_end_event(struct sqlhist *sqlhist);
const char *sqlhist_synth_event(struct sqlhist *sqlhist);
const char *sqlhist_synth_event_def(struct sqlhist *sqlhist);
const char *sqlhist_start_hist(struct sqlhist *sqlhist);
const char *sqlhist_end_hist(struct sqlhist *sqlhist);
const char *sqlhist_synth_filter(struct sqlhist *sqlhist);
const char *sqlhist_start_path(struct sqlhist *sqlhist);
const char *sqlhist_end_path(struct sqlhist *sqlhist);
const char *sqlhist_trace_dir(struct sqlhist *sqlhist);
const char *sqlhist_error(struct sqlhist *sqlhist);
struct sqlhist *sqlhist_parse(const char *buffer, const char *trace_dir);
int sqlhist_lex_it(void);
void sqlhist_destroy(struct sqlhist *sqlhist);
#endif