File size: 268 Bytes
c95a088 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef DS4_HELP_H
#define DS4_HELP_H
#include <stdio.h>
typedef enum {
DS4_HELP_DS4,
DS4_HELP_SERVER,
DS4_HELP_AGENT,
DS4_HELP_BENCH,
DS4_HELP_EVAL,
} ds4_help_tool;
void ds4_help_print(FILE *fp, ds4_help_tool tool, const char *topic);
#endif
|