bootstrap.h 550 B

12345678910111213141516171819
  1. #ifndef LSUP_INIT_DATA_H
  2. #define LSUP_INIT_DATA_H
  3. #define LSUP_NS "urn:lsup:"
  4. /** @brief Initial namespace map.
  5. */
  6. const char *init_nsmap[][2] = {
  7. {"dc", "http://purl.org/dc/elements/1.1/"},
  8. {"dcterms", "http://purl.org/dc/terms/"},
  9. {"foaf", "http://xmlns.com/foaf/0.1/"},
  10. {"lsup", LSUP_NS},
  11. {"rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#"},
  12. {"rdfs", "http://www.w3.org/2000/01/rdf-schema#"},
  13. {"xsd", "http://www.w3.org/2001/XMLSchema#"},
  14. {NULL}
  15. };
  16. #endif /* LSUP_INIT_DATA_H */