libraptor (3) Linux Manual Page
NAME libraptor – Raptor RDF parser and serializer library SYNOPSIS #include <raptor.h> raptor_init(); raptor_parser *p=raptor_new_parser(rdfxml); raptor_set_statement_handler(p,NULL,print_triples); raptor_uri *file_uri=raptor_new_uri(http://example.org/); raptor_parse_file(p,file_uri,base_uri); raptor_parse_uri(p,uri,NULL); raptor_free_parser(p); raptor_free_uri(file_uri); raptor_finish(); cc file.c -lraptor DESCRIPTION The Raptor library provides a high-level interface to a set of parsers and serializers that generate Resource Description Framework (RDF) triples by parsing syntaxes or serialize the triples…
