]> rtime.felk.cvut.cz Git - sysless.git/blob - libs4c/cmdproc/cmd_proc_priv.h
Whitespace fixes
[sysless.git] / libs4c / cmdproc / cmd_proc_priv.h
1 #ifndef CMD_PROC_PRIV_H
2 #define CMD_PROC_PRIV_H
3
4 /* The maximal depth of command arrays nesting (see CMD_DES_INCLUDE_SUBLIST). */
5 #define CMD_ARR_STACK_SIZE 4
6
7 char *skip_white(char *p);
8 int cmd_io_line_out(cmd_io_t *cmd_io);
9 int cmd_io_line_in(cmd_io_t *cmd_io);
10
11 #include <stdio.h>
12 #define DPRINT(...) fprintf(stderr, __VA_ARGS__)
13
14 #endif