_info 414 B

1234567891011121314151617181920212223
  1. #include <string.h>
  2. #include "config.h"
  3. /**
  4. * ttxml - tiny XML library for parsing (trusted!) XML documents.
  5. *
  6. * This parses an XML file into a convenient data structure.
  7. *
  8. * License: GPL
  9. * Author: Daniel Burke <dan.p.burke@gmail.com>
  10. */
  11. int main(int argc, char *argv[])
  12. {
  13. /* Expect exactly one argument */
  14. if (argc != 2)
  15. return 1;
  16. if (strcmp(argv[1], "depends") == 0) {
  17. return 0;
  18. }
  19. return 1;
  20. }