A tool for adding anime to your anidb list.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
249B

  1. #include <stdio.h>
  2. #include "cmd.h"
  3. #include "cache.h"
  4. #include <string.h>
  5. enum error cmd_prog_version(void *data)
  6. {
  7. enum error err = NOERR;
  8. printf("caniadd v0.1.0"
  9. #ifdef GIT_REF
  10. " (" GIT_REF ")"
  11. #endif
  12. "\n");
  13. return err;
  14. }