cammy/bin/commands.h

19 lines
680 B
C
Raw Normal View History

#ifndef _COMMANDS_H
#define _COMMANDS_H
void cammy_command_usage(int argc, char **argv, const char *message, ...);
void cammy_command_validate_photo_number(int argc, char **argv, int num);
int cammy_command_import(int argc, char **argv);
int cammy_command_export(int argc, char **argv);
int cammy_command_dither(int argc, char **argv);
int cammy_command_split_rgb(int argc, char **argv);
int cammy_command_merge_rgb(int argc, char **argv);
int cammy_command_import_tile(int argc, char **argv);
int cammy_command_export_tile(int argc, char **argv);
int cammy_command_convert_tile(int argc, char **argv);
int cammy_command_slice(int argc, char **argv);
#endif /* _COMMANDS_H */