summaryrefslogtreecommitdiff
path: root/src/raptor.h
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-17 19:02:05 -0800
committerDave Beckett <dave@dajobe.org>2010-01-17 19:02:05 -0800
commit1adffe3a0a7f11126e016ae4f836dcb0f92ce4f7 (patch)
tree02ebb164f400e2f589309cbcdb0f421ae6e48e40 /src/raptor.h
parentf14a7e0914cca09809740707bcadec20d1c6d570 (diff)
downloadraptor-1adffe3a0a7f11126e016ae4f836dcb0f92ce4f7.tar.gz
Rename statement priting methods to raptor_statement_NAME() form
(raptor_statement_print): Renamed from raptor_print_statement (raptor_statement_print_as_ntriples): Renamed from raptor_print_statement_as_ntriples
Diffstat (limited to 'src/raptor.h')
-rw-r--r--src/raptor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raptor.h b/src/raptor.h
index 9c68e5f7..c23793cd 100644
--- a/src/raptor.h
+++ b/src/raptor.h
@@ -649,9 +649,9 @@ RAPTOR_API
void raptor_parser_set_uri_filter(raptor_parser* parser, raptor_uri_filter_func filter, void* user_data);
RAPTOR_API
-void raptor_print_statement(const raptor_statement * statement, FILE *stream);
+void raptor_statement_print(const raptor_statement * statement, FILE *stream);
RAPTOR_API
-void raptor_print_statement_as_ntriples(const raptor_statement * statement, FILE *stream);
+void raptor_statement_print_as_ntriples(const raptor_statement * statement, FILE *stream);
RAPTOR_API
unsigned char* raptor_term_as_counted_string(raptor_term *term, size_t* len_p);
RAPTOR_API