ds4fa / src /ds4_help.h
julianmb's picture
Upload folder using huggingface_hub (part 3)
c95a088 verified
Raw
History Blame Contribute Delete
268 Bytes
#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