libraptor2 (3) Linux Manual Page
NAME libraptor2 – Raptor RDF syntax library 2.0 SYNOPSIS #include <raptor2.h> world = raptor_new_world(); raptor_parser *p = raptor_new_parser(world, rdfxml); raptor_set_statement_handler(p, NULL, print_triples); raptor_uri *file_uri=raptor_new_uri(world,http://example.org/); raptor_parser_parse_file(p,file_uri,base_uri); raptor_parser_parse_uri(p,uri,NULL); raptor_free_parser(p); raptor_free_uri(file_uri); raptor_free_world(world); cc prog.c -o prog `pkg-config raptor2 –cflags` `pkg-config raptor2 –libs` DESCRIPTION The Raptor library provides a high-level interface to a set of parsers and serializers that…
