bootstrap.h 521 B

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