cagebreak/parse.h
Cagebreak Signing Key 7 df167f2839 Release 1.8.0
- Add libinput configuration
- Add virtual keyboard and pointer support
2021-09-26 21:25:46 +02:00

18 lines
336 B
C

#ifndef PARSE_H
#define PARSE_H
#define MAX_LINE_SIZE 256
#include <stdio.h>
struct cg_server;
int
parse_rc_line(struct cg_server *server, char *line, char **errstr);
char *
parse_malloc_vsprintf(const char *fmt, ...);
char *
parse_malloc_vsprintf_va_list(const char *fmt, va_list list);
#endif /* end of include guard PARSE_H */