summaryrefslogtreecommitdiff
path: root/docs/raptor-changes.tsv
blob: d4c5f685699f7f47ef3a4c1da11fa2224421db76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
# OLD VERSION<tab>OLD RETURN<tab>OLD NAME<tab>OLD ARGS<tab>NEW VERSION<tab>NEW RETURN<tab>NEW NAME<tab>NEW ARGS<tab>NOTES
# OLD VERSION<tab>type<tab>OLD NAME<tab>-<tab>NEW VERSION<tab>type<tab>NEW NAME<tab>-<tab>NOTES
# OLD VERSION<tab>enum<tab>OLD NAME<tab>-<tab>NEW VERSION<tab>type<tab>NEW NAME<tab>-<tab>NOTES
#
# Functions
#
1.4.21	void*	raptor_alloc_memory	(size_t size)	2.0.0	void*	raptor_alloc_memory	(size_t size)	-
1.4.21	void*	raptor_calloc_memory	(size_t nmemb, size_t size)	2.0.0	void*	raptor_calloc_memory	(size_t nmemb, size_t size)	-
1.4.21	int	raptor_compare_strings	(const void *a, const void *b)	2.0.0	-	-	-	Trivial utility function removed.
1.4.21	int	raptor_copy_identifier	(raptor_identifier *dest, raptor_identifier *src)	2.0.0	-	-	-	Use raptor_term_copy() with #raptor_term objects.
1.4.21	void	raptor_error_handlers_init	(raptor_error_handlers* error_handlers)	2.0.0	-	-	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	void	raptor_error_handlers_init_v2	(raptor_world* world, raptor_error_handlers* error_handlers)	2.0.0	-	-	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	raptor_feature	raptor_feature_from_uri	(raptor_uri *uri)	2.0.0	raptor_option	raptor_world_get_option_from_uri	(raptor_world* world, raptor_uri *uri)	-
1.4.21	raptor_feature	raptor_feature_from_uri_v2	(raptor_world* world, raptor_uri *uri)	2.0.0	raptor_option	raptor_world_get_option_from_uri	(raptor_world* world, raptor_uri *uri)	-
1.4.21	int	raptor_feature_value_type	(const raptor_feature feature)	2.0.0	-	-	-	Use raptor_world_get_option_description() for the option and access the value_type field.
1.4.21	int	raptor_features_enumerate	(const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_PARSER
1.4.21	int	raptor_features_enumerate_v2	(raptor_world* world, const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_PARSER
1.4.21	void	raptor_finish	(void)	2.0.0	-	-	-	Use raptor_free_world() with #raptor_world object.
1.4.21	int	raptor_format_locator	(char* buffer, size_t length, raptor_locator* locator)	2.0.0	int	raptor_locator_format	(char* buffer, size_t length, raptor_locator* locator)	-
1.4.21	int	raptor_format_locator_v2	(raptor_world* world, char* buffer, size_t length, raptor_locator* locator)	2.0.0	int	raptor_locator_format	(char* buffer, size_t length, raptor_locator* locator)	-
1.4.21	void	raptor_free_identifier	(raptor_identifier *identifier)	2.0.0	-	-	-	Use raptor_free_term() with #raptor_term objects.
1.4.21	void	raptor_free_iostream	(raptor_iostream *iostr)	2.0.0	void	raptor_free_iostream	(raptor_iostream *iostr)	-
1.4.21	void	raptor_free_memory	(void *ptr)	2.0.0	void	raptor_free_memory	(void *ptr)	-
1.4.21	void	raptor_free_namespace	(raptor_namespace *ns)	2.0.0	void	raptor_free_namespace	(raptor_namespace *ns)	-
1.4.21	void	raptor_free_namespaces	(raptor_namespace_stack *nstack)	2.0.0	void	raptor_free_namespaces	(raptor_namespace_stack *nstack)	-
1.4.21	void	raptor_free_parser	(raptor_parser* parser)	2.0.0	void	raptor_free_parser	(raptor_parser* parser)	-
1.4.21	void	raptor_free_qname	(raptor_qname* name)	2.0.0	void	raptor_free_qname	(raptor_qname* name)	-
1.4.21	void	raptor_free_sax2	(raptor_sax2 *sax2)	2.0.0	void	raptor_free_sax2	(raptor_sax2 *sax2)	-
1.4.21	void	raptor_free_sequence	(raptor_sequence* seq)	2.0.0	void	raptor_free_sequence	(raptor_sequence* seq)	-
1.4.21	void	raptor_free_serializer	(raptor_serializer* rdf_serializer)	2.0.0	void	raptor_free_serializer	(raptor_serializer* rdf_serializer)	-
1.4.21	void	raptor_free_stringbuffer	(raptor_stringbuffer *stringbuffer)	2.0.0	void	raptor_free_stringbuffer	(raptor_stringbuffer *stringbuffer)	-
1.4.21	void	raptor_free_uri	(raptor_uri *uri)	2.0.0	void	raptor_free_uri	(raptor_uri *uri)	-
1.4.21	void	raptor_free_uri_v2	(raptor_world* world, raptor_uri *uri)	2.0.0	void	raptor_free_uri	(raptor_uri *uri)	-
1.4.21	void	raptor_free_world	(raptor_world* world)	2.0.0	void	raptor_free_world	(raptor_world* world)	-
1.4.21	void	raptor_free_xml_element	(raptor_xml_element *element)	2.0.0	void	raptor_free_xml_element	(raptor_xml_element *element)	-
1.4.21	void	raptor_free_xml_writer	(raptor_xml_writer* xml_writer)	2.0.0	void	raptor_free_xml_writer	(raptor_xml_writer* xml_writer)	-
1.4.21	int	raptor_get_feature	(raptor_parser *parser, raptor_feature feature)	2.0.0	int	raptor_parser_get_option	(raptor_parser *parser, raptor_option option, char** string_p, int* integer_p)	-
1.4.21	unsigned int	raptor_get_feature_count	(void)	2.0.0	unsigned int	raptor_option_get_count	(void)	-
1.4.21	const char*	raptor_get_label	(raptor_parser *rdf_parser)	2.0.0	raptor_syntax_description*	raptor_parser_get_description	(raptor_parser* rdf_parser)	Use label field of returned description.
1.4.21	raptor_locator*	raptor_get_locator	(raptor_parser* rdf_parser)	2.0.0	raptor_locator*	raptor_parser_get_locator	(raptor_parser* rdf_parser)	-
1.4.21	const char*	raptor_get_mime_type	(raptor_parser *rdf_parser)	2.0.0	raptor_syntax_description*	raptor_parser_get_description	(raptor_parser* rdf_parser)	Use the mime_types array field of returned #raptor_syntax_description
1.4.21	const char*	raptor_get_name	(raptor_parser *rdf_parser)	2.0.0	const char*	raptor_parser_get_name	(raptor_parser *rdf_parser)	-
1.4.21	int	raptor_get_need_base_uri	(raptor_parser *rdf_parser)	2.0.0	raptor_syntax_description*	raptor_parser_get_description	(raptor_parser* rdf_parser)	Use the #RAPTOR_SYNTAX_NEED_BASE_URI bitflag in the flags field of the returned #raptor_syntax_description
1.4.21	const char*	raptor_guess_parser_name	(raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	2.0.0	const char*	raptor_world_guess_parser_name	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	-
1.4.21	const char*	raptor_guess_parser_name_v2	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	2.0.0	const char*	raptor_world_guess_parser_name	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	-
1.4.21	void	raptor_init	(void)	2.0.0	-	-	-	Use raptor_new_world() to create a new #raptor_world object.
1.4.21	int	raptor_iostream_format_hexadecimal	(raptor_iostream* iostr, unsigned int integer, int width)	2.0.0	int	raptor_iostream_hexadecimal_write	(unsigned int integer, int width, raptor_iostream* iostr)	-
1.4.21	size_t	raptor_iostream_get_bytes_written_count	(raptor_iostream *iostr)	2.0.0	-	-	-	Deprecated for raptor_iostream_tell().
1.4.21	int	raptor_iostream_read_bytes	(raptor_iostream* iostr, void *ptr, size_t size, size_t nmemb)	2.0.0	int	raptor_iostream_read_bytes	(void *ptr, size_t size, size_t nmemb, raptor_iostream* iostr)	-
1.4.21	int	raptor_iostream_read_eof	(raptor_iostream *iostr)	2.0.0	int	raptor_iostream_read_eof	(raptor_iostream *iostr)	-
1.4.21	unsigned long	raptor_iostream_tell	(raptor_iostream *iostr)	2.0.0	unsigned long	raptor_iostream_tell	(raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_byte	(raptor_iostream *iostr, const int byte)	2.0.0	int	raptor_iostream_write_byte	(const int byte, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_bytes	(raptor_iostream *iostr, const void *ptr, size_t size, size_t nmemb)	2.0.0	int	raptor_iostream_write_bytes	(const void *ptr, size_t size, size_t nmemb, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_counted_string	(raptor_iostream *iostr, const void *string, size_t len)	2.0.0	int	raptor_iostream_counted_string_write	(const void *string, size_t len, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_decimal	(raptor_iostream* iostr, int integer)	2.0.0	int	raptor_iostream_decimal_write	(int integer, raptor_iostream* iostr)	-
1.4.21	void	raptor_iostream_write_end	(raptor_iostream *iostr)	2.0.0	int	raptor_iostream_write_end	(raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_namespace	(raptor_iostream* iostr, raptor_namespace *ns)	2.0.0	int	raptor_namespace_write	(raptor_namespace *ns, raptor_iostream* iostr)	-
1.4.21	int	raptor_iostream_write_qname	(raptor_iostream* iostr, raptor_qname *qname)	2.0.0	int	raptor_qname_write	(raptor_qname *qname, raptor_iostream* iostr)	-
1.4.21	void	raptor_iostream_write_statement_ntriples	(raptor_iostream* iostr, const raptor_statement *statement)	2.0.0	int	raptor_statement_ntriples_write	(const raptor_statement *statement, raptor_iostream* iostr, int write_graph_term)	Gains extra flag arg to decide whether to write any graph term.
1.4.21	int	raptor_iostream_write_string	(raptor_iostream *iostr, const void *string)	2.0.0	int	raptor_iostream_string_write	(const void *string, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_string_ntriples	(raptor_iostream *iostr, const unsigned char* string, size_t len, const char delim)	2.0.0	int	raptor_string_ntriples_write	(const unsigned char* string, size_t len, const char delim, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_string_python	(raptor_iostream *iostr, const unsigned char* string, size_t len, const char delim, int flags)	2.0.0	int	raptor_string_python_write	(const unsigned char* string, size_t len, const char delim, int flags, raptor_iostream *iostr)	-
1.4.21	void	raptor_iostream_write_string_turtle	(raptor_iostream *iostr, const unsigned char* string, size_t len)	2.0.0	-	-	-	Deprecated for raptor_string_python_write().
1.4.21	int	raptor_iostream_write_stringbuffer	(raptor_iostream* iostr, raptor_stringbuffer *sb)	2.0.0	int	raptor_stringbuffer_write	(raptor_stringbuffer *sb, raptor_iostream* iostr)	-
1.4.21	int	raptor_iostream_write_uri	(raptor_iostream *iostr, raptor_uri *uri)	2.0.0	int	raptor_uri_write	(raptor_uri *uri, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_uri_v2	(raptor_world* world, raptor_iostream *iostr, raptor_uri *uri)	2.0.0	int	raptor_uri_write	(raptor_uri *uri, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_xml_any_escaped_string	(raptor_iostream* iostr, const unsigned char* string, size_t len, char quote, int xml_version, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	int	raptor_xml_escape_string_any_write	(const unsigned char* string, size_t len, char quote, int xml_version, raptor_iostream* iostr)	-
1.4.21	int	raptor_iostream_write_xml_element	(raptor_iostream *iostr, raptor_xml_element *element, raptor_namespace_stack *nstack, int is_empty, int is_end, raptor_simple_message_handler error_handler, void *error_data, int depth)	2.0.0	int	raptor_xml_element_write	(raptor_xml_element *element, raptor_namespace_stack *nstack, int is_empty, int is_end, int depth, raptor_iostream *iostr)	-
1.4.21	int	raptor_iostream_write_xml_escaped_string	(raptor_iostream* iostr, const unsigned char* string, size_t len, char quote, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	int	raptor_xml_escape_string_write	(const unsigned char* string, size_t len, char quote, raptor_iostream* iostr)	-
1.4.21	int	raptor_locator_byte	(raptor_locator *locator)	2.0.0	int	raptor_locator_byte	(raptor_locator *locator)	-
1.4.21	int	raptor_locator_column	(raptor_locator *locator)	2.0.0	int	raptor_locator_column	(raptor_locator *locator)	-
1.4.21	const char*	raptor_locator_file	(raptor_locator *locator)	2.0.0	const char*	raptor_locator_file	(raptor_locator *locator)	-
1.4.21	int	raptor_locator_line	(raptor_locator *locator)	2.0.0	int	raptor_locator_line	(raptor_locator *locator)	-
1.4.21	const char*	raptor_locator_uri	(raptor_locator *locator)	2.0.0	const char*	raptor_locator_uri	(raptor_locator *locator)	-
1.4.21	const char*	raptor_locator_uri_v2	(raptor_world* world, raptor_locator *locator)	2.0.0	const char*	raptor_locator_uri	(raptor_locator *locator)	-
1.4.21	int	raptor_namespace_copy	(raptor_namespace_stack *nstack, raptor_namespace *ns, int new_depth)	2.0.0	int	raptor_namespace_stack_start_namespace	(raptor_namespace_stack *nstack, raptor_namespace *ns, int new_depth)	-
1.4.21	const unsigned char*	raptor_namespace_get_counted_prefix	(const raptor_namespace *ns, size_t *length_p)	2.0.0	const unsigned char*	raptor_namespace_get_counted_prefix	(const raptor_namespace *ns, size_t *length_p)	-
1.4.21	const unsigned char*	raptor_namespace_get_prefix	(const raptor_namespace *ns)	2.0.0	const unsigned char*	raptor_namespace_get_prefix	(const raptor_namespace *ns)	-
1.4.21	raptor_uri*	raptor_namespace_get_uri	(const raptor_namespace *ns)	2.0.0	raptor_uri*	raptor_namespace_get_uri	(const raptor_namespace *ns)	-
1.4.21	void	raptor_namespaces_clear	(raptor_namespace_stack *nstack)	2.0.0	void	raptor_namespaces_clear	(raptor_namespace_stack *nstack)	-
1.4.21	void	raptor_namespaces_end_for_depth	(raptor_namespace_stack *nstack, int depth)	2.0.0	void	raptor_namespaces_end_for_depth	(raptor_namespace_stack *nstack, int depth)	-
1.4.21	raptor_namespace*	raptor_namespaces_find_namespace	(raptor_namespace_stack *nstack, const unsigned char* prefix, int prefix_length)	2.0.0	raptor_namespace*	raptor_namespaces_find_namespace	(raptor_namespace_stack *nstack, const unsigned char* prefix, int prefix_length)	-
1.4.21	raptor_namespace*	raptor_namespaces_find_namespace_by_uri	(raptor_namespace_stack *nstack, raptor_uri *ns_uri)	2.0.0	raptor_namespace*	raptor_namespaces_find_namespace_by_uri	(raptor_namespace_stack *nstack, raptor_uri *ns_uri)	-
1.4.21	unsigned char*	raptor_namespaces_format	(const raptor_namespace *ns, size_t *length_p)	2.0.0	unsigned char*	raptor_namespace_format_as_xml	(const raptor_namespace *ns, size_t *length_p)	-
1.4.21	raptor_namespace*	raptor_namespaces_get_default_namespace	(raptor_namespace_stack *nstack)	2.0.0	raptor_namespace*	raptor_namespaces_get_default_namespace	(raptor_namespace_stack *nstack)	-
1.4.21	int	raptor_namespaces_init	(raptor_namespace_stack *nstack, const raptor_uri_handler *uri_handler, void *uri_context, raptor_simple_message_handler error_handler, void *error_data, int defaults)	2.0.0	int	raptor_namespaces_init	(raptor_world* world, raptor_namespace_stack *nstack, int defaults)	-
1.4.21	int	raptor_namespaces_init_v2	(raptor_world* world, raptor_namespace_stack *nstack, raptor_simple_message_handler error_handler, void *error_data, int defaults)	2.0.0	int	raptor_namespaces_init	(raptor_world* world, raptor_namespace_stack *nstack, int defaults)	-
1.4.21	int	raptor_namespaces_namespace_in_scope	(raptor_namespace_stack *nstack, const raptor_namespace *nspace)	2.0.0	int	raptor_namespaces_namespace_in_scope	(raptor_namespace_stack *nstack, const raptor_namespace *nspace)	-
1.4.21	raptor_qname*	raptor_namespaces_qname_from_uri	(raptor_namespace_stack *nstack, raptor_uri *uri, int xml_version)	2.0.0	raptor_qname*	raptor_new_qname_from_namespace_uri	(raptor_namespace_stack *nstack, raptor_uri *uri, int xml_version)	-
1.4.21	void	raptor_namespaces_start_namespace	(raptor_namespace_stack *nstack, raptor_namespace *nspace)	2.0.0	void	raptor_namespaces_start_namespace	(raptor_namespace_stack *nstack, raptor_namespace *nspace)	-
1.4.21	int	raptor_namespaces_start_namespace_full	(raptor_namespace_stack *nstack, const unsigned char* prefix, const unsigned char* ns_uri_string, int depth)	2.0.0	int	raptor_namespaces_start_namespace_full	(raptor_namespace_stack *nstack, const unsigned char* prefix, const unsigned char* ns_uri_string, int depth)	-
1.4.21	raptor_identifier*	raptor_new_identifier	(raptor_identifier_type type, raptor_uri *uri, raptor_uri_source uri_source, const unsigned char* id, const unsigned char* literal, raptor_uri *literal_datatype, const unsigned char* literal_language)	2.0.0	-	-	-	Replaced by raptor_new_term_from_blank(), raptor_new_term_from_literal() or raptor_new_term_from_blank() and #raptor_term class.
1.4.21	raptor_identifier*	raptor_new_identifier_v2	(raptor_world* world, raptor_identifier_type type, raptor_uri *uri, raptor_uri_source uri_source, const unsigned char* id, const unsigned char* literal, raptor_uri *literal_datatype, const unsigned char* literal_language)	2.0.0	-	-	-	Replaced by raptor_new_term_from_blank(), raptor_new_term_from_literal() or raptor_new_term_from_blank() and #raptor_term class.
1.4.21	raptor_iostream*	raptor_new_iostream_from_file_handle	(FILE *handle)	2.0.0	raptor_iostream*	raptor_new_iostream_from_file_handle	(raptor_world* world, FILE *handle)	-
1.4.21	raptor_iostream*	raptor_new_iostream_from_filename	(const char* filename)	2.0.0	raptor_iostream*	raptor_new_iostream_from_filename	(raptor_world* world, const char* filename)	-
1.4.21	raptor_iostream*	raptor_new_iostream_from_handler	(void *context, const raptor_iostream_handler *handler)	2.0.0	raptor_iostream*	raptor_new_iostream_from_handler	(raptor_world* world, void *user_data, const raptor_iostream_handler* const handler)	-
1.4.21	raptor_iostream*	raptor_new_iostream_from_handler2	(void *user_data, const raptor_iostream_handler2* const handler2)	2.0.0	raptor_iostream*	raptor_new_iostream_from_handler	(raptor_world* world, void *user_data, const raptor_iostream_handler* const handler)	-
1.4.21	raptor_iostream*	raptor_new_iostream_from_sink	(void)	2.0.0	raptor_iostream*	raptor_new_iostream_from_sink	(raptor_world* world)	-
1.4.21	raptor_iostream*	raptor_new_iostream_from_string	(void *string, size_t length)	2.0.0	raptor_iostream*	raptor_new_iostream_from_string	(raptor_world* world, void *string, size_t length)	-
1.4.21	raptor_iostream*	raptor_new_iostream_to_file_handle	(FILE *handle)	2.0.0	raptor_iostream*	raptor_new_iostream_to_file_handle	(raptor_world* world, FILE *handle)	-
1.4.21	raptor_iostream*	raptor_new_iostream_to_filename	(const char* filename)	2.0.0	raptor_iostream*	raptor_new_iostream_to_filename	(raptor_world* world, const char* filename)	-
1.4.21	raptor_iostream*	raptor_new_iostream_to_sink	(void)	2.0.0	raptor_iostream*	raptor_new_iostream_to_sink	(raptor_world* world)	-
1.4.21	raptor_iostream*	raptor_new_iostream_to_string	(void **string_p, size_t *length_p, void *(*malloc_handler)(size_t size))	2.0.0	raptor_iostream*	raptor_new_iostream_to_string	(raptor_world* world, void **string_p, size_t *length_p, void *(*malloc_handler)(size_t size))	-
1.4.21	raptor_namespace*	raptor_new_namespace	(raptor_namespace_stack *nstack, const unsigned char* prefix, const unsigned char* ns_uri_string, int depth)	2.0.0	raptor_namespace*	raptor_new_namespace	(raptor_namespace_stack *nstack, const unsigned char* prefix, const unsigned char* ns_uri_string, int depth)	-
1.4.21	raptor_namespace*	raptor_new_namespace_from_uri	(raptor_namespace_stack *nstack, const unsigned char* prefix, raptor_uri* ns_uri, int depth)	2.0.0	raptor_namespace*	raptor_new_namespace_from_uri	(raptor_namespace_stack *nstack, const unsigned char* prefix, raptor_uri* ns_uri, int depth)	-
1.4.21	int	raptor_new_namespace_parts_from_string	(const unsigned char* string, unsigned char* *prefix, unsigned char* *uri_string)	2.0.0	int	raptor_xml_namespace_string_parse	(const unsigned char* string, unsigned char* *prefix, unsigned char* *uri_string)	-
1.4.21	raptor_namespace_stack*	raptor_new_namespaces	(const raptor_uri_handler *uri_handler, void *uri_context, raptor_simple_message_handler error_handler, void *error_data, int defaults)	2.0.0	raptor_namespace_stack*	raptor_new_namespaces	(raptor_world* world, int defaults)	-
1.4.21	raptor_namespace_stack*	raptor_new_namespaces_v2	(raptor_world* world, raptor_simple_message_handler error_handler, void *error_data, int defaults)	2.0.0	raptor_namespace_stack*	raptor_new_namespaces	(raptor_world* world, int defaults)	-
1.4.21	raptor_parser*	raptor_new_parser	(const char* name)	2.0.0	raptor_parser*	raptor_new_parser	(raptor_world* world, const char* name)	-
1.4.21	raptor_parser*	raptor_new_parser_for_content	(raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	2.0.0	raptor_parser*	raptor_new_parser_for_content	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	-
1.4.21	raptor_parser*	raptor_new_parser_for_content_v2	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	2.0.0	raptor_parser*	raptor_new_parser_for_content	(raptor_world* world, raptor_uri *uri, const char* mime_type, const unsigned char* buffer, size_t len, const unsigned char* identifier)	-
1.4.21	raptor_parser*	raptor_new_parser_v2	(raptor_world* world, const char* name)	2.0.0	raptor_parser*	raptor_new_parser	(raptor_world* world, const char* name)	-
1.4.21	raptor_qname*	raptor_new_qname	(raptor_namespace_stack *nstack, const unsigned char* name, const unsigned char* value, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	raptor_qname*	raptor_new_qname	(raptor_namespace_stack *nstack, const unsigned char* name, const unsigned char* value)	-
1.4.21	raptor_qname*	raptor_new_qname_from_namespace_local_name	(raptor_namespace *ns, const unsigned char* local_name, const unsigned char* value)	2.0.0	raptor_qname*	raptor_new_qname_from_namespace_local_name	(raptor_world* world, raptor_namespace *ns, const unsigned char* local_name, const unsigned char* value)	-
1.4.21	raptor_qname*	raptor_new_qname_from_namespace_local_name_v2	(raptor_world* world, raptor_namespace *ns, const unsigned char* local_name, const unsigned char* value)	2.0.0	raptor_qname*	raptor_new_qname_from_namespace_local_name	(raptor_world* world, raptor_namespace *ns, const unsigned char* local_name, const unsigned char* value)	-
1.4.21	raptor_sax2*	raptor_new_sax2	(void *user_data, raptor_error_handlers* error_handlers)	2.0.0	raptor_sax2*	raptor_new_sax2	(raptor_world *world, raptor_locator *locator, void* user_data)	-
1.4.21	raptor_sequence*	raptor_new_sequence	(raptor_sequence_free_handler* free_handler, raptor_sequence_print_handler* print_handler)	2.0.0	raptor_sequence*	raptor_new_sequence	(raptor_data_free_handler free_handler, raptor_data_print_handler print_handler)	-
1.4.21	raptor_sequence*	raptor_new_sequence_v2	(raptor_sequence_free_handler_v2* free_handler, raptor_sequence_print_handler_v2* print_handler, void* handler_context)	2.0.0	raptor_sequence*	raptor_new_sequence	(raptor_data_free_handler free_handler, raptor_data_print_handler print_handler)	-
1.4.21	raptor_serializer*	raptor_new_serializer	(const char* name)	2.0.0	raptor_serializer*	raptor_new_serializer	(raptor_world* world, const char* name)	-
1.4.21	raptor_serializer*	raptor_new_serializer_v2	(raptor_world* world, const char* name)	2.0.0	raptor_serializer*	raptor_new_serializer	(raptor_world* world, const char* name)	-
1.4.21	raptor_stringbuffer*	raptor_new_stringbuffer	(void)	2.0.0	raptor_stringbuffer*	raptor_new_stringbuffer	(void)	-
1.4.21	raptor_uri*	raptor_new_uri	(const unsigned char* uri_string)	2.0.0	raptor_uri*	raptor_new_uri	(raptor_world* world, const unsigned char* uri_string)	-
1.4.21	raptor_uri*	raptor_new_uri_for_rdf_concept	(const char* name)	2.0.0	raptor_uri*	raptor_new_uri_for_rdf_concept	(raptor_world* world, const unsigned char* name)	-
1.4.21	raptor_uri*	raptor_new_uri_for_rdf_concept_v2	(raptor_world* world, const char* name)	2.0.0	raptor_uri*	raptor_new_uri_for_rdf_concept	(raptor_world* world, const unsigned char* name)	-
1.4.21	raptor_uri*	raptor_new_uri_for_retrieval	(raptor_uri* old_uri)	2.0.0	raptor_uri*	raptor_new_uri_for_retrieval	(raptor_uri* old_uri)	-
1.4.21	raptor_uri*	raptor_new_uri_for_retrieval_v2	(raptor_world* world, raptor_uri* old_uri)	2.0.0	raptor_uri*	raptor_new_uri_for_retrieval	(raptor_uri* old_uri)	-
1.4.21	raptor_uri*	raptor_new_uri_for_xmlbase	(raptor_uri* old_uri)	2.0.0	raptor_uri*	raptor_new_uri_for_xmlbase	(raptor_uri* old_uri)	-
1.4.21	raptor_uri*	raptor_new_uri_for_xmlbase_v2	(raptor_world* world, raptor_uri* old_uri)	2.0.0	raptor_uri*	raptor_new_uri_for_xmlbase	(raptor_uri* old_uri)	-
1.4.21	raptor_uri*	raptor_new_uri_from_id	(raptor_uri *base_uri, const unsigned char* id)	2.0.0	raptor_uri*	raptor_new_uri_from_id	(raptor_world* world, raptor_uri *base_uri, const unsigned char* id)	-
1.4.21	raptor_uri*	raptor_new_uri_from_id_v2	(raptor_world* world, raptor_uri *base_uri, const unsigned char* id)	2.0.0	raptor_uri*	raptor_new_uri_from_id	(raptor_world* world, raptor_uri *base_uri, const unsigned char* id)	-
1.4.21	raptor_uri*	raptor_new_uri_from_uri_local_name	(raptor_uri *uri, const unsigned char* local_name)	2.0.0	raptor_uri*	raptor_new_uri_from_uri_local_name	(raptor_world* world, raptor_uri *uri, const unsigned char* local_name)	-
1.4.21	raptor_uri*	raptor_new_uri_from_uri_local_name_v2	(raptor_world* world, raptor_uri *uri, const unsigned char* local_name)	2.0.0	raptor_uri*	raptor_new_uri_from_uri_local_name	(raptor_world* world, raptor_uri *uri, const unsigned char* local_name)	-
1.4.21	raptor_uri*	raptor_new_uri_relative_to_base	(raptor_uri *base_uri, const unsigned char* uri_string)	2.0.0	raptor_uri*	raptor_new_uri_relative_to_base	(raptor_world* world, raptor_uri *base_uri, const unsigned char* uri_string)	-
1.4.21	raptor_uri*	raptor_new_uri_relative_to_base_v2	(raptor_world* world, raptor_uri *base_uri, const unsigned char* uri_string)	2.0.0	raptor_uri*	raptor_new_uri_relative_to_base	(raptor_world* world, raptor_uri *base_uri, const unsigned char* uri_string)	-
1.4.21	raptor_uri*	raptor_new_uri_v2	(raptor_world* world, const unsigned char* uri_string)	2.0.0	raptor_uri*	raptor_new_uri	(raptor_world* world, const unsigned char* uri_string)	-
1.4.21	raptor_world*	raptor_new_world	(void)	2.0.0	raptor_world*	raptor_new_world	(void)	-
1.4.21	raptor_xml_element*	raptor_new_xml_element	(raptor_qname* name, const unsigned char* xml_language, raptor_uri* xml_base)	2.0.0	raptor_xml_element*	raptor_new_xml_element	(raptor_qname* name, const unsigned char* xml_language, raptor_uri* xml_base)	-
1.4.21	raptor_xml_element*	raptor_new_xml_element_from_namespace_local_name	(raptor_namespace *ns, const unsigned char* name, const unsigned char* xml_language, raptor_uri *xml_base)	2.0.0	raptor_xml_element*	raptor_new_xml_element_from_namespace_local_name	(raptor_namespace *ns, const unsigned char* name, const unsigned char* xml_language, raptor_uri *xml_base)	-
1.4.21	raptor_xml_writer*	raptor_new_xml_writer	(raptor_namespace_stack *nstack, const raptor_uri_handler *uri_handler, void *uri_context, raptor_iostream* iostr, raptor_simple_message_handler error_handler, void *error_data, int canonicalize)	2.0.0	raptor_xml_writer*	raptor_new_xml_writer	(raptor_world* world, raptor_namespace_stack *nstack, raptor_iostream* iostr)	-
1.4.21	raptor_xml_writer*	raptor_new_xml_writer_v2	(raptor_world* world, raptor_namespace_stack *nstack, raptor_iostream* iostr, raptor_simple_message_handler error_handler, void *error_data, int canonicalize)	2.0.0	raptor_xml_writer*	raptor_new_xml_writer	(raptor_world* world, raptor_namespace_stack *nstack, raptor_iostream* iostr)	-
1.4.21	unsigned char*	raptor_ntriples_string_as_utf8_string	(raptor_parser* rdf_parser, const unsigned char* src, int len, size_t *dest_lenp)	2.0.0	-	-	-	Deprecated internal debug function.
1.4.21	const char*	raptor_ntriples_term_as_string	(raptor_ntriples_term_type term)	2.0.0	-	-	-	Deprecated internal debug function.
1.4.21	void	raptor_parse_abort	(raptor_parser* rdf_parser)	2.0.0	void	raptor_parser_parse_abort	(raptor_parser* rdf_parser)	-
1.4.21	int	raptor_parse_chunk	(raptor_parser* rdf_parser, const unsigned char* buffer, size_t len, int is_end)	2.0.0	int	raptor_parser_parse_chunk	(raptor_parser* rdf_parser, const unsigned char* buffer, size_t len, int is_end)	-
1.4.21	int	raptor_parse_file	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri)	2.0.0	int	raptor_parser_parse_file	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri)	-
1.4.21	int	raptor_parse_file_stream	(raptor_parser* rdf_parser, FILE *stream, const char* filename, raptor_uri *base_uri)	2.0.0	int	raptor_parser_parse_file_stream	(raptor_parser* rdf_parser, FILE *stream, const char* filename, raptor_uri *base_uri)	-
1.4.21	int	raptor_parse_uri	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri)	2.0.0	int	raptor_parser_parse_uri	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri)	-
1.4.21	int	raptor_parse_uri_with_connection	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri, void *connection)	2.0.0	int	raptor_parser_parse_uri_with_connection	(raptor_parser* rdf_parser, raptor_uri *uri, raptor_uri *base_uri, void *connection)	-
1.4.21	const char*	raptor_parser_get_accept_header	(raptor_parser* rdf_parser)	2.0.0	const char*	raptor_parser_get_accept_header	(raptor_parser* rdf_parser)	-
1.4.21	const unsigned char*	raptor_parser_get_feature_string	(raptor_parser *parser, raptor_feature feature)	2.0.0	const unsigned char*	raptor_parser_get_option	(raptor_parser *parser, raptor_option option, char** string_p, int* integer_p)	-
1.4.21	raptor_world*	raptor_parser_get_world	(raptor_parser* rdf_parser)	2.0.0	raptor_world*	raptor_parser_get_world	(raptor_parser* rdf_parser)	-
1.4.21	int	raptor_parser_set_feature_string	(raptor_parser *parser, raptor_feature feature, const unsigned char* value)	2.0.0	int	raptor_parser_set_option	(raptor_parser *parser, raptor_option option, char* string, int integer)	-
1.4.21	void	raptor_parser_set_uri_filter	(raptor_parser* parser, raptor_uri_filter_func filter, void* user_data)	2.0.0	void	raptor_parser_set_uri_filter	(raptor_parser* parser, raptor_uri_filter_func filter, void* user_data)	-
1.4.21	int	raptor_parsers_enumerate	(const unsigned int counter, const char* *name, const char* *label)	2.0.0	raptor_syntax_description*	raptor_world_get_parser_description	(raptor_world* world, unsigned int counter)	-
1.4.21	int	raptor_parsers_enumerate_v2	(raptor_world* world, const unsigned int counter, const char* *name, const char* *label)	2.0.0	raptor_syntax_description*	raptor_world_get_parser_description	(raptor_world* world, const unsigned int counter)	-
1.4.21	void	raptor_print_locator	(FILE *stream, raptor_locator* locator)	2.0.0	int	raptor_locator_print	(raptor_locator* locator, FILE *stream)	-
1.4.21	void	raptor_print_locator_v2	(raptor_world* world, FILE *stream, raptor_locator* locator)	2.0.0	void	raptor_locator_print	(raptor_locator* locator, FILE *stream)	-
1.4.21	int	raptor_print_ntriples_string	(FILE *stream, const unsigned char* string, const char delim)	2.0.0	-	-	-	Use raptor_string_ntriples_write() with a #raptor_iostream
1.4.21	void	raptor_print_statement	(const raptor_statement * statement, FILE *stream)	2.0.0	int	raptor_statement_print	(const raptor_statement * statement, FILE *stream)	-
1.4.21	void	raptor_print_statement_as_ntriples	(const raptor_statement * statement, FILE *stream)	2.0.0	int	raptor_statement_print_as_ntriples	(const raptor_statement * statement, FILE *stream)	-
1.4.21	void	raptor_print_statement_as_ntriples_v2	(const raptor_statement_v2 * statement, FILE *stream)	2.0.0	int	raptor_statement_print_as_ntriples	(const raptor_statement * statement, FILE *stream)	-
1.4.21	void	raptor_print_statement_detailed	(const raptor_statement * statement, int detailed, FILE *stream)	2.0.0	-	-	-	Deprecated internal function.
1.4.21	void	raptor_print_statement_v2	(const raptor_statement_v2 * statement, FILE *stream)	2.0.0	int	raptor_statement_print	(const raptor_statement * statement, FILE *stream)	-
1.4.21	raptor_qname*	raptor_qname_copy	(raptor_qname *qname)	2.0.0	raptor_qname*	raptor_qname_copy	(raptor_qname *qname)	-
1.4.21	int	raptor_qname_equal	(raptor_qname *name1, raptor_qname *name2)	2.0.0	int	raptor_qname_equal	(raptor_qname *name1, raptor_qname *name2)	-
1.4.21	const unsigned char*	raptor_qname_get_counted_value	(raptor_qname* name, size_t* length_p)	2.0.0	const unsigned char*	raptor_qname_get_counted_value	(raptor_qname* name, size_t* length_p)	-
1.4.21	const unsigned char*	raptor_qname_get_local_name	(raptor_qname* name)	2.0.0	const unsigned char*	raptor_qname_get_local_name	(raptor_qname* name)	-
1.4.21	const raptor_namespace*	raptor_qname_get_namespace	(raptor_qname* name)	2.0.0	const raptor_namespace*	raptor_qname_get_namespace	(raptor_qname* name)	-
1.4.21	const unsigned char*	raptor_qname_get_value	(raptor_qname* name)	2.0.0	const unsigned char*	raptor_qname_get_value	(raptor_qname* name)	-
1.4.21	raptor_uri*	raptor_qname_string_to_uri	(raptor_namespace_stack *nstack, const unsigned char* name, size_t name_len, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	raptor_uri*	raptor_qname_string_to_uri	(raptor_namespace_stack *nstack, const unsigned char* name, size_t name_len)	-
1.4.21	unsigned char*	raptor_qname_to_counted_name	(raptor_qname *qname, size_t* length_p)	2.0.0	unsigned char*	raptor_qname_to_counted_name	(raptor_qname *qname, size_t* length_p)	-
1.4.21	raptor_uri*	raptor_sax2_inscope_base_uri	(raptor_sax2* sax2)	2.0.0	raptor_uri*	raptor_sax2_inscope_base_uri	(raptor_sax2* sax2)	-
1.4.21	const unsigned char*	raptor_sax2_inscope_xml_language	(raptor_sax2* sax2)	2.0.0	const unsigned char*	raptor_sax2_inscope_xml_language	(raptor_sax2* sax2)	-
1.4.21	int	raptor_sax2_parse_chunk	(raptor_sax2* sax2, const unsigned char* buffer, size_t len, int is_end)	2.0.0	int	raptor_sax2_parse_chunk	(raptor_sax2* sax2, const unsigned char* buffer, size_t len, int is_end)	-
1.4.21	void	raptor_sax2_parse_start	(raptor_sax2 *sax2, raptor_uri *base_uri)	2.0.0	void	raptor_sax2_parse_start	(raptor_sax2 *sax2, raptor_uri *base_uri)	-
1.4.21	void	raptor_sax2_set_cdata_handler	(raptor_sax2* sax2, raptor_sax2_cdata_handler handler)	2.0.0	void	raptor_sax2_set_cdata_handler	(raptor_sax2* sax2, raptor_sax2_cdata_handler handler)	-
1.4.21	void	raptor_sax2_set_characters_handler	(raptor_sax2* sax2, raptor_sax2_characters_handler handler)	2.0.0	void	raptor_sax2_set_characters_handler	(raptor_sax2* sax2, raptor_sax2_characters_handler handler)	-
1.4.21	void	raptor_sax2_set_comment_handler	(raptor_sax2* sax2, raptor_sax2_comment_handler handler)	2.0.0	void	raptor_sax2_set_comment_handler	(raptor_sax2* sax2, raptor_sax2_comment_handler handler)	-
1.4.21	void	raptor_sax2_set_end_element_handler	(raptor_sax2* sax2, raptor_sax2_end_element_handler handler)	2.0.0	void	raptor_sax2_set_end_element_handler	(raptor_sax2* sax2, raptor_sax2_end_element_handler handler)	-
1.4.21	void	raptor_sax2_set_external_entity_ref_handler	(raptor_sax2* sax2, raptor_sax2_external_entity_ref_handler handler)	2.0.0	void	raptor_sax2_set_external_entity_ref_handler	(raptor_sax2* sax2, raptor_sax2_external_entity_ref_handler handler)	-
1.4.21	void	raptor_sax2_set_namespace_handler	(raptor_sax2* sax2, raptor_namespace_handler handler)	2.0.0	void	raptor_sax2_set_namespace_handler	(raptor_sax2* sax2, raptor_namespace_handler handler)	-
1.4.21	void	raptor_sax2_set_start_element_handler	(raptor_sax2* sax2, raptor_sax2_start_element_handler handler)	2.0.0	void	raptor_sax2_set_start_element_handler	(raptor_sax2* sax2, raptor_sax2_start_element_handler handler)	-
1.4.21	void	raptor_sax2_set_unparsed_entity_decl_handler	(raptor_sax2* sax2, raptor_sax2_unparsed_entity_decl_handler handler)	2.0.0	void	raptor_sax2_set_unparsed_entity_decl_handler	(raptor_sax2* sax2, raptor_sax2_unparsed_entity_decl_handler handler)	-
1.4.21	void*	raptor_sequence_delete_at	(raptor_sequence* seq, int idx)	2.0.0	void*	raptor_sequence_delete_at	(raptor_sequence* seq, int idx)	-
1.4.21	void*	raptor_sequence_get_at	(raptor_sequence* seq, int idx)	2.0.0	void*	raptor_sequence_get_at	(raptor_sequence* seq, int idx)	-
1.4.21	int	raptor_sequence_join	(raptor_sequence* dest, raptor_sequence *src)	2.0.0	int	raptor_sequence_join	(raptor_sequence* dest, raptor_sequence *src)	-
1.4.21	void*	raptor_sequence_pop	(raptor_sequence* seq)	2.0.0	void*	raptor_sequence_pop	(raptor_sequence* seq)	-
1.4.21	void	raptor_sequence_print	(raptor_sequence* seq, FILE* fh)	2.0.0	int	raptor_sequence_print	(raptor_sequence* seq, FILE* fh)	-
1.4.21	void	raptor_sequence_print_string	(char* data, FILE *fh)	2.0.0	-	-	-	Trivial utility function removed.
1.4.21	void	raptor_sequence_print_uri	(char* data, FILE *fh)	2.0.0	-	-	-	Deprecated for raptor_uri_print()
1.4.21	int	raptor_sequence_push	(raptor_sequence* seq, void *data)	2.0.0	int	raptor_sequence_push	(raptor_sequence* seq, void *data)	-
1.4.21	int	raptor_sequence_set_at	(raptor_sequence* seq, int idx, void *data)	2.0.0	int	raptor_sequence_set_at	(raptor_sequence* seq, int idx, void *data)	-
1.4.21	void	raptor_sequence_set_print_handler	(raptor_sequence *seq, raptor_sequence_print_handler *print_handler)	2.0.0	-	-	-	Use the argument in the raptor_new_sequence() constructor instead.
1.4.21	void	raptor_sequence_set_print_handler_v2	(raptor_sequence *seq, raptor_sequence_print_handler_v2 *print_handler)	2.0.0	-	-	-	Use the argument in the raptor_new_sequence() constructor instead.
1.4.21	int	raptor_sequence_shift	(raptor_sequence* seq, void *data)	2.0.0	int	raptor_sequence_shift	(raptor_sequence* seq, void *data)	-
1.4.21	int	raptor_sequence_size	(raptor_sequence* seq)	2.0.0	int	raptor_sequence_size	(raptor_sequence* seq)	-
1.4.21	void	raptor_sequence_sort	(raptor_sequence* seq, int(*compare)(const void *, const void *))	2.0.0	void	raptor_sequence_sort	(raptor_sequence* seq, raptor_data_compare_handler compare)	-
1.4.21	void*	raptor_sequence_unshift	(raptor_sequence* seq)	2.0.0	void*	raptor_sequence_unshift	(raptor_sequence* seq)	-
1.4.21	int	raptor_serialize_end	(raptor_serializer *rdf_serializer)	2.0.0	int	raptor_serializer_serialize_end	(raptor_serializer *rdf_serializer)	-
1.4.21	int	raptor_serialize_set_namespace	(raptor_serializer* rdf_serializer, raptor_uri *uri, const unsigned char* prefix)	2.0.0	int	raptor_serializer_set_namespace	(raptor_serializer* rdf_serializer, raptor_uri *uri, const unsigned char* prefix)	-
1.4.21	int	raptor_serialize_set_namespace_from_namespace	(raptor_serializer* rdf_serializer, raptor_namespace *nspace)	2.0.0	int	raptor_serializer_set_namespace_from_namespace	(raptor_serializer* rdf_serializer, raptor_namespace *nspace)	-
1.4.21	int	raptor_serialize_start	(raptor_serializer *rdf_serializer, raptor_uri *uri, raptor_iostream *iostream)	2.0.0	int	raptor_serializer_start_to_iostream	(raptor_serializer *rdf_serializer, raptor_uri *uri, raptor_iostream *iostream)	-
1.4.21	int	raptor_serialize_start_to_file_handle	(raptor_serializer *rdf_serializer, raptor_uri *uri, FILE *fh)	2.0.0	int	raptor_serializer_start_to_file_handle	(raptor_serializer *rdf_serializer, raptor_uri *uri, FILE *fh)	-
1.4.21	int	raptor_serialize_start_to_filename	(raptor_serializer *rdf_serializer, const char* filename)	2.0.0	int	raptor_serializer_start_to_filename	(raptor_serializer *rdf_serializer, const char* filename)	-
1.4.21	int	raptor_serialize_start_to_iostream	(raptor_serializer *rdf_serializer, raptor_uri *uri, raptor_iostream *iostream)	2.0.0	int	raptor_serializer_start_to_iostream	(raptor_serializer *rdf_serializer, raptor_uri *uri, raptor_iostream *iostream)	-
1.4.21	int	raptor_serialize_start_to_string	(raptor_serializer *rdf_serializer, raptor_uri *uri, void **string_p, size_t *length_p)	2.0.0	int	raptor_serializer_start_to_string	(raptor_serializer *rdf_serializer, raptor_uri *uri, void **string_p, size_t *length_p)	-
1.4.21	int	raptor_serialize_statement	(raptor_serializer* rdf_serializer, const raptor_statement *statement)	2.0.0	int	raptor_serializer_serialize_statement	(raptor_serializer* rdf_serializer, raptor_statement *statement)	-
1.4.21	int	raptor_serializer_features_enumerate	(const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_SERIALIZER
1.4.21	int	raptor_serializer_features_enumerate_v2	(raptor_world* world, const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_SERIALIZER
1.4.21	int	raptor_serializer_get_feature	(raptor_serializer *serializer, raptor_feature feature)	2.0.0	int	raptor_serializer_get_option	(raptor_serializer *serializer, raptor_option option)	-
1.4.21	const unsigned char*	raptor_serializer_get_feature_string	(raptor_serializer *serializer, raptor_feature feature)	2.0.0	int	raptor_serializer_get_option	(raptor_serializer *serializer, raptor_option option, char** string_p, int* integer_p)	-
1.4.21	raptor_iostream*	raptor_serializer_get_iostream	(raptor_serializer *serializer)	2.0.0	raptor_iostream*	raptor_serializer_get_iostream	(raptor_serializer *serializer)	-
1.4.21	raptor_locator*	raptor_serializer_get_locator	(raptor_serializer *rdf_serializer)	2.0.0	raptor_locator*	raptor_serializer_get_locator	(raptor_serializer *rdf_serializer)	-
1.4.21	raptor_world*	raptor_serializer_get_world	(raptor_serializer* rdf_serializer)	2.0.0	raptor_world*	raptor_serializer_get_world	(raptor_serializer* rdf_serializer)	-
1.4.21	void	raptor_serializer_set_error_handler	(raptor_serializer* serializer, void *user_data, raptor_message_handler handler)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	int	raptor_serializer_set_feature	(raptor_serializer *serializer, raptor_feature feature, int value)	2.0.0	int	raptor_serializer_set_option	(raptor_serializer *serializer, raptor_option option, char* string, int integer)	-
1.4.21	int	raptor_serializer_set_feature_string	(raptor_serializer *serializer, raptor_feature feature, const unsigned char* value)	2.0.0	int	raptor_serializer_set_option	(raptor_serializer *serializer, raptor_option option, char* string, int integer)	-
1.4.21	void	raptor_serializer_set_warning_handler	(raptor_serializer* serializer, void *user_data, raptor_message_handler handler)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	int	raptor_serializer_syntax_name_check	(const char* name)	2.0.0	int	raptor_world_is_serializer_name	(raptor_world* world, const char* name)	-
1.4.21	int	raptor_serializer_syntax_name_check_v2	(raptor_world* world, const char* name)	2.0.0	int	raptor_world_is_serializer_name	(raptor_world* world, const char* name)	-
1.4.21	int	raptor_serializers_enumerate	(const unsigned int counter, const char* *name, const char* *label, const char* *mime_type, const unsigned char* *uri_string)	2.0.0	const raptor_syntax_description*	raptor_world_get_serializer_description	(raptor_world* world, unsigned int counter)	-
1.4.21	int	raptor_serializers_enumerate_v2	(raptor_world* world, const unsigned int counter, const char* *name, const char* *label, const char* *mime_type, const unsigned char* *uri_string)	2.0.0	const raptor_syntax_description*	raptor_world_get_serializer_description	(raptor_world* world, const unsigned int counter)	-
1.4.21	void	raptor_set_default_generate_id_parameters	(raptor_parser* rdf_parser, char* prefix, int base)	2.0.0	void	raptor_world_set_generate_bnodeid_parameters	(raptor_world* world, char* prefix, int base)	-
1.4.21	void	raptor_set_error_handler	(raptor_parser* parser, void *user_data, raptor_message_handler handler)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	void	raptor_set_fatal_error_handler	(raptor_parser* parser, void *user_data, raptor_message_handler handler)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	int	raptor_set_feature	(raptor_parser *parser, raptor_feature feature, int value)	2.0.0	int	raptor_parser_set_option	(raptor_parser *parser, raptor_option option, char* string, int integer)	-
1.4.21	void	raptor_set_generate_id_handler	(raptor_parser* parser, void *user_data, raptor_generate_id_handler handler)	2.0.0	void	raptor_world_set_generate_bnodeid_handler	(raptor_world* world, void *user_data, raptor_generate_bnodeid_handler handler)	-
1.4.21	void	raptor_set_graph_handler	(raptor_parser* parser, void *user_data, raptor_graph_handler handler)	2.0.0	void	raptor_parser_set_graph_mark_handler	(raptor_parser* parser, void *user_data, raptor_graph_mark_handler handler)	-
1.4.21	void	raptor_set_libxslt_security_preferences	(void *security_preferences)	2.0.0	int	raptor_world_set_libxslt_security_preferences	(raptor_world *world, void *security_preferences)	-
1.4.21	void	raptor_set_namespace_handler	(raptor_parser* parser, void *user_data, raptor_namespace_handler handler)	2.0.0	void	raptor_parser_set_namespace_handler	(raptor_parser* parser, void *user_data, raptor_namespace_handler handler)	-
1.4.21	void	raptor_set_parser_strict	(raptor_parser* rdf_parser, int is_strict)	2.0.0	-	-	-	Replaced by raptor_parser_set_option() with option RAPTOR_OPTION_STRICT
1.4.21	void	raptor_set_statement_handler	(raptor_parser* parser, void *user_data, raptor_statement_handler handler)	2.0.0	void	raptor_parser_set_statement_handler	(raptor_parser* parser, void *user_data, raptor_statement_handler handler)	-
1.4.21	void	raptor_set_warning_handler	(raptor_parser* parser, void *user_data, raptor_message_handler handler)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	int	raptor_start_parse	(raptor_parser *rdf_parser, raptor_uri *uri)	2.0.0	int	raptor_parser_parse_start	(raptor_parser *rdf_parser, raptor_uri *uri)	-
1.4.21	int	raptor_statement_compare	(const raptor_statement *s1, const raptor_statement *s2)	2.0.0	int	raptor_statement_compare	(const raptor_statement *s1, const raptor_statement *s2)	-
1.4.21	int	raptor_statement_compare_v2	(const raptor_statement_v2 *s1, const raptor_statement_v2 *s2)	2.0.0	int	raptor_statement_compare	(const raptor_statement *s1, const raptor_statement *s2)	-
1.4.21	unsigned char*	raptor_statement_part_as_counted_string	(const void *term, raptor_identifier_type type, raptor_uri* literal_datatype, const unsigned char* literal_language, size_t* len_p)	2.0.0	-	-	-	Better done via methods of #raptor_term class such as raptor_term_to_counted_string().
1.4.21	unsigned char*	raptor_statement_part_as_counted_string_v2	(raptor_world* world, const void *term, raptor_identifier_type type, raptor_uri* literal_datatype, const unsigned char* literal_language, size_t* len_p)	2.0.0	-	-	-	Better done via methods of #raptor_term class such as raptor_term_to_counted_string().
1.4.21	unsigned char*	raptor_statement_part_as_string	()	2.0.0	-	-	-	Better done via methods of #raptor_term class such as raptor_term_to_string().
1.4.21	unsigned char*	raptor_statement_part_as_string_v2	()	2.0.0	-	-	-	Better done via methods of #raptor_term class such as raptor_term_to_string().
1.4.21	int	raptor_stringbuffer_append_counted_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, size_t length, int do_copy)	2.0.0	int	raptor_stringbuffer_append_counted_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, size_t length, int do_copy)	-
1.4.21	int	raptor_stringbuffer_append_decimal	(raptor_stringbuffer* stringbuffer, int integer)	2.0.0	int	raptor_stringbuffer_append_decimal	(raptor_stringbuffer* stringbuffer, int integer)	-
1.4.21	int	raptor_stringbuffer_append_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, int do_copy)	2.0.0	int	raptor_stringbuffer_append_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, int do_copy)	-
1.4.21	int	raptor_stringbuffer_append_stringbuffer	(raptor_stringbuffer* stringbuffer, raptor_stringbuffer* append)	2.0.0	int	raptor_stringbuffer_append_stringbuffer	(raptor_stringbuffer* stringbuffer, raptor_stringbuffer* append)	-
1.4.21	unsigned char*	raptor_stringbuffer_as_string	(raptor_stringbuffer* stringbuffer)	2.0.0	unsigned char*	raptor_stringbuffer_as_string	(raptor_stringbuffer* stringbuffer)	-
1.4.21	int	raptor_stringbuffer_copy_to_string	(raptor_stringbuffer* stringbuffer, unsigned char* string, size_t length)	2.0.0	int	raptor_stringbuffer_copy_to_string	(raptor_stringbuffer* stringbuffer, unsigned char* string, size_t length)	-
1.4.21	size_t	raptor_stringbuffer_length	(raptor_stringbuffer* stringbuffer)	2.0.0	size_t	raptor_stringbuffer_length	(raptor_stringbuffer* stringbuffer)	-
1.4.21	int	raptor_stringbuffer_prepend_counted_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, size_t length, int do_copy)	2.0.0	int	raptor_stringbuffer_prepend_counted_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, size_t length, int do_copy)	-
1.4.21	int	raptor_stringbuffer_prepend_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, int do_copy)	2.0.0	int	raptor_stringbuffer_prepend_string	(raptor_stringbuffer* stringbuffer, const unsigned char* string, int do_copy)	-
1.4.21	int	raptor_syntax_name_check	(const char* name)	2.0.0	int	raptor_world_is_parser_name	(raptor_world* world, const char *name)	-
1.4.21	int	raptor_syntax_name_check_v2	(raptor_world* world, const char* name)	2.0.0	int	raptor_world_is_parser_name	(raptor_world* world, const char *name)	-
1.4.21	int	raptor_syntaxes_enumerate	(const unsigned int counter, const char* *name, const char* *label, const char* *mime_type, const unsigned char* *uri_string)	2.0.0	raptor_syntax_description*	raptor_world_get_parser_description	(raptor_world* world, const unsigned int counter)	-
1.4.21	int	raptor_syntaxes_enumerate_v2	(raptor_world* world, const unsigned int counter, const char* *name, const char* *label, const char* *mime_type, const unsigned char* *uri_string)	2.0.0	raptor_syntax_description*	raptor_world_get_parser_description	(raptor_world* world, const unsigned int counter)	-
1.4.21	int	raptor_unicode_char_to_utf8	(raptor_unichar c, unsigned char* output)	2.0.0	int	raptor_unicode_utf8_string_put_char	(raptor_unichar c, unsigned char* output, size_t length)	-
1.4.21	int	raptor_unicode_is_xml10_namechar	(raptor_unichar c)	2.0.0	int	raptor_unicode_is_xml10_namechar	(raptor_unichar c)	-
1.4.21	int	raptor_unicode_is_xml10_namestartchar	(raptor_unichar c)	2.0.0	int	raptor_unicode_is_xml10_namestartchar	(raptor_unichar c)	-
1.4.21	int	raptor_unicode_is_xml11_namechar	(raptor_unichar c)	2.0.0	int	raptor_unicode_is_xml11_namechar	(raptor_unichar c)	-
1.4.21	int	raptor_unicode_is_xml11_namestartchar	(raptor_unichar c)	2.0.0	int	raptor_unicode_is_xml11_namestartchar	(raptor_unichar c)	-
1.4.21	unsigned char*	raptor_uri_as_counted_string	(raptor_uri *uri, size_t* len_p)	2.0.0	unsigned char*	raptor_uri_as_counted_string	(raptor_uri *uri, size_t* len_p)	-
1.4.21	unsigned char*	raptor_uri_as_counted_string_v2	(raptor_world* world, raptor_uri *uri, size_t* len_p)	2.0.0	unsigned char*	raptor_uri_as_counted_string	(raptor_uri *uri, size_t* len_p)	-
1.4.21	unsigned char*	raptor_uri_as_string	(raptor_uri *uri)	2.0.0	unsigned char*	raptor_uri_as_string	(raptor_uri *uri)	-
1.4.21	unsigned char*	raptor_uri_as_string_v2	(raptor_world* world, raptor_uri *uri)	2.0.0	unsigned char*	raptor_uri_as_string	(raptor_uri *uri)	-
1.4.21	int	raptor_uri_compare	(raptor_uri* uri1, raptor_uri* uri2)	2.0.0	int	raptor_uri_compare	(raptor_uri* uri1, raptor_uri* uri2)	-
1.4.21	int	raptor_uri_compare_v2	(raptor_world* world, raptor_uri* uri1, raptor_uri* uri2)	2.0.0	int	raptor_uri_compare	(raptor_uri* uri1, raptor_uri* uri2)	-
1.4.21	raptor_uri*	raptor_uri_copy	(raptor_uri *uri)	2.0.0	raptor_uri*	raptor_uri_copy	(raptor_uri *uri)	-
1.4.21	raptor_uri*	raptor_uri_copy_v2	(raptor_world* world, raptor_uri *uri)	2.0.0	raptor_uri*	raptor_uri_copy	(raptor_uri *uri)	-
1.4.21	int	raptor_uri_equals	(raptor_uri* uri1, raptor_uri* uri2)	2.0.0	int	raptor_uri_equals	(raptor_uri* uri1, raptor_uri* uri2)	-
1.4.21	int	raptor_uri_equals_v2	(raptor_world* world, raptor_uri* uri1, raptor_uri* uri2)	2.0.0	int	raptor_uri_equals	(raptor_uri* uri1, raptor_uri* uri2)	-
1.4.21	unsigned char*	raptor_uri_filename_to_uri_string	(const char* filename)	2.0.0	unsigned char*	raptor_uri_filename_to_uri_string	(const char* filename)	-
1.4.21	void	raptor_uri_get_handler	(const raptor_uri_handler **handler, void **context)	2.0.0	-	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	void	raptor_uri_get_handler_v2	(raptor_world* world, const raptor_uri_handler **handler, void **context)	2.0.0	-	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	int	raptor_uri_is_file_uri	(const unsigned char* uri_string)	2.0.0	int	raptor_uri_uri_string_is_file_uri	(const unsigned char* uri_string)	-
1.4.21	void	raptor_uri_print	(const raptor_uri* uri, FILE *stream)	2.0.0	int	raptor_uri_print	(const raptor_uri* uri, FILE *stream)	-
1.4.21	void	raptor_uri_print_v2	(raptor_world* world, const raptor_uri* uri, FILE *stream)	2.0.0	int	raptor_uri_print	(const raptor_uri* uri, FILE *stream)	-
1.4.21	void	raptor_uri_resolve_uri_reference	(const unsigned char* base_uri, const unsigned char* reference_uri, unsigned char* buffer, size_t length)	2.0.0	size_t	raptor_uri_resolve_uri_reference	(const unsigned char* base_uri, const unsigned char* reference_uri, unsigned char* buffer, size_t length)	-
1.4.21	void	raptor_uri_set_handler	(const raptor_uri_handler *handler, void *context)	2.0.0	-	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	void	raptor_uri_set_handler_v2	(raptor_world* world, const raptor_uri_handler *handler, void *context)	2.0.0	-	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	unsigned char*	raptor_uri_to_counted_string	(raptor_uri *uri, size_t *len_p)	2.0.0	unsigned char*	raptor_uri_to_counted_string	(raptor_uri *uri, size_t *len_p)	-
1.4.21	unsigned char*	raptor_uri_to_counted_string_v2	(raptor_world* world, raptor_uri *uri, size_t *len_p)	2.0.0	unsigned char*	raptor_uri_to_counted_string	(raptor_uri *uri, size_t *len_p)	-
1.4.21	unsigned char*	raptor_uri_to_relative_counted_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri, size_t *length_p)	2.0.0	unsigned char*	raptor_uri_to_relative_counted_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri, size_t *length_p)	-
1.4.21	unsigned char*	raptor_uri_to_relative_counted_uri_string_v2	(raptor_world* world, raptor_uri *base_uri, raptor_uri *reference_uri, size_t *length_p)	2.0.0	unsigned char*	raptor_uri_to_relative_counted_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri, size_t *length_p)	-
1.4.21	unsigned char*	raptor_uri_to_relative_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri)	2.0.0	unsigned char*	raptor_uri_to_relative_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri)	-
1.4.21	unsigned char*	raptor_uri_to_relative_uri_string_v2	(raptor_world* world, raptor_uri *base_uri, raptor_uri *reference_uri)	2.0.0	unsigned char*	raptor_uri_to_relative_uri_string	(raptor_uri *base_uri, raptor_uri *reference_uri)	-
1.4.21	unsigned char*	raptor_uri_to_string	(raptor_uri *uri)	2.0.0	unsigned char*	raptor_uri_to_string	(raptor_uri *uri)	-
1.4.21	unsigned char*	raptor_uri_to_string_v2	(raptor_world* world, raptor_uri *uri)	2.0.0	unsigned char*	raptor_uri_to_string	(raptor_uri *uri)	-
1.4.21	int	raptor_uri_uri_string_is_file_uri	(const unsigned char* uri_string)	2.0.0	int	raptor_uri_uri_string_is_file_uri	(const unsigned char* uri_string)	-
1.4.21	char*	raptor_uri_uri_string_to_filename	(const unsigned char* uri_string)	2.0.0	char*	raptor_uri_uri_string_to_filename	(const unsigned char* uri_string)	-
1.4.21	char*	raptor_uri_uri_string_to_filename_fragment	(const unsigned char* uri_string, unsigned char* *fragment_p)	2.0.0	char*	raptor_uri_uri_string_to_filename_fragment	(const unsigned char* uri_string, unsigned char* *fragment_p)	-
1.4.21	int	raptor_utf8_check	(const unsigned char* string, size_t length)	2.0.0	int	raptor_unicode_check_utf8_string	(const unsigned char* string, size_t length)	-
1.4.21	int	raptor_utf8_to_unicode_char	(raptor_unichar* output, const unsigned char* input, int length)	2.0.0	int	raptor_unicode_utf8_string_get_char	(const unsigned char* input, size_t length, raptor_unichar* output)	-
1.4.21	char*	raptor_vsnprintf	(const char* message, va_list arguments)	2.0.0	char*	raptor_vsnprintf	(const char* message, va_list arguments)	-
1.4.21	int	raptor_world_open	(raptor_world* world)	2.0.0	int	raptor_world_open	(raptor_world* world)	-
1.4.21	void	raptor_world_set_libxml_flags	(raptor_world *world, int flags)	2.0.0	int	raptor_world_set_flag	(raptor_world *world, raptor_world_flag flag, int value)	-
1.4.21	void	raptor_world_set_libxslt_security_preferences	(raptor_world *world, void *security_preferences)	2.0.0	int	raptor_world_set_libxslt_security_preferences	(raptor_world *world, void *security_preferences)	-
1.4.21	void	raptor_www_abort	(raptor_www *www, const char* reason)	2.0.0	void	raptor_www_abort	(raptor_www *www, const char* reason)	-
1.4.21	int	raptor_www_fetch	(raptor_www *www, raptor_uri *uri)	2.0.0	int	raptor_www_fetch	(raptor_www *www, raptor_uri *uri)	-
1.4.21	int	raptor_www_fetch_to_string	(raptor_www *www, raptor_uri *uri, void **string_p, size_t *length_p, void *(*malloc_handler)(size_t size))	2.0.0	int	raptor_www_fetch_to_string	(raptor_www *www, raptor_uri *uri, void **string_p, size_t *length_p, raptor_data_malloc_handler const malloc_handler)	-
1.4.21	void	raptor_www_finish	(void)	2.0.0	-	-	-	No need for this to be public.
1.4.21	void	raptor_www_finish_v2	(raptor_world* world)	2.0.0	-	-	-	No need for this to be public.
1.4.21	void	raptor_www_free	(raptor_www *www)	2.0.0	void	raptor_free_www	(raptor_www *www)	-
1.4.21	void*	raptor_www_get_connection	(raptor_www *www)	2.0.0	void*	raptor_www_get_connection	(raptor_www *www)	-
1.4.21	raptor_uri*	raptor_www_get_final_uri	(raptor_www* www)	2.0.0	raptor_uri*	raptor_www_get_final_uri	(raptor_www* www)	-
1.4.21	void	raptor_www_init	(void)	2.0.0	-	-	-	No need for this to be public.
1.4.21	int	raptor_www_init_v2	(raptor_world* world)	2.0.0	-	-	-	No need for this to be public.
1.4.21	raptor_www*	raptor_www_new	(void)	2.0.0	raptor_www*	raptor_new_www	(raptor_world* world)	-
1.4.21	raptor_www*	raptor_www_new_v2	(raptor_world* world)	2.0.0	raptor_www*	raptor_new_www	(raptor_world* world)	-
1.4.21	raptor_www*	raptor_www_new_with_connection	(void* connection)	2.0.0	raptor_www*	raptor_new_www_with_connection	(raptor_world* world, void* connection)	-
1.4.21	raptor_www*	raptor_www_new_with_connection_v2	(raptor_world* world, void* connection)	2.0.0	raptor_www*	raptor_new_www_with_connection	(raptor_world* world, void* connection)	-
1.4.21	void	raptor_www_no_www_library_init_finish	(void)	2.0.0	-	-	-	Deprecated for raptor_world_set_flag().
1.4.21	void	raptor_www_no_www_library_init_finish_v2	(raptor_world* world)	2.0.0	-	-	-	Deprecated for raptor_world_set_flag().
1.4.21	void	raptor_www_set_connection_timeout	(raptor_www* www, int timeout)	2.0.0	void	raptor_www_set_connection_timeout	(raptor_www* www, int timeout)	-
1.4.21	void	raptor_www_set_content_type_handler	(raptor_www *www, raptor_www_content_type_handler handler, void *user_data)	2.0.0	void	raptor_www_set_content_type_handler	(raptor_www *www, raptor_www_content_type_handler handler, void *user_data)	-
1.4.21	void	raptor_www_set_error_handler	(raptor_www *www, raptor_message_handler error_handler, void *error_data)	2.0.0	-	-	-	Replaced by raptor_world_set_log_handler() on the #raptor_world object.
1.4.21	void	raptor_www_set_final_uri_handler	(raptor_www* www, raptor_www_final_uri_handler handler, void *user_data)	2.0.0	void	raptor_www_set_final_uri_handler	(raptor_www* www, raptor_www_final_uri_handler handler, void *user_data)	-
1.4.21	void	raptor_www_set_http_accept	(raptor_www *www, const char* value)	2.0.0	void	raptor_www_set_http_accept	(raptor_www *www, const char* value)	-
1.4.21	int	raptor_www_set_http_cache_control	(raptor_www* www, const char* cache_control)	2.0.0	int	raptor_www_set_http_cache_control	(raptor_www* www, const char* cache_control)	-
1.4.21	void	raptor_www_set_proxy	(raptor_www *www, const char* proxy)	2.0.0	void	raptor_www_set_proxy	(raptor_www *www, const char* proxy)	-
1.4.21	void	raptor_www_set_uri_filter	(raptor_www* www, raptor_uri_filter_func filter, void* user_data)	2.0.0	void	raptor_www_set_uri_filter	(raptor_www* www, raptor_uri_filter_func filter, void* user_data)	-
1.4.21	void	raptor_www_set_user_agent	(raptor_www *www, const char* user_agent)	2.0.0	void	raptor_www_set_user_agent	(raptor_www *www, const char* user_agent)	-
1.4.21	void	raptor_www_set_write_bytes_handler	(raptor_www *www, raptor_www_write_bytes_handler handler, void *user_data)	2.0.0	void	raptor_www_set_write_bytes_handler	(raptor_www *www, raptor_www_write_bytes_handler handler, void *user_data)	-
1.4.21	int	raptor_xml_any_escape_string	(const unsigned char* string, size_t len, unsigned char* buffer, size_t length, char quote, int xml_version, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	int	raptor_xml_escape_string_any	(raptor_world* world, const unsigned char* string, size_t len, unsigned char* buffer, size_t length, char quote, int xml_version)	-
1.4.21	int	raptor_xml_element_declare_namespace	(raptor_xml_element* xml_element, raptor_namespace *nspace)	2.0.0	int	raptor_xml_element_declare_namespace	(raptor_xml_element* xml_element, raptor_namespace *nspace)	-
1.4.21	raptor_qname**	raptor_xml_element_get_attributes	(raptor_xml_element* xml_element)	2.0.0	raptor_qname**	raptor_xml_element_get_attributes	(raptor_xml_element* xml_element)	-
1.4.21	int	raptor_xml_element_get_attributes_count	(raptor_xml_element* xml_element)	2.0.0	int	raptor_xml_element_get_attributes_count	(raptor_xml_element* xml_element)	-
1.4.21	const unsigned char*	raptor_xml_element_get_language	(raptor_xml_element* xml_element)	2.0.0	const unsigned char*	raptor_xml_element_get_language	(raptor_xml_element* xml_element)	-
1.4.21	raptor_qname*	raptor_xml_element_get_name	(raptor_xml_element *xml_element)	2.0.0	raptor_qname*	raptor_xml_element_get_name	(raptor_xml_element *xml_element)	-
1.4.21	int	raptor_xml_element_is_empty	(raptor_xml_element* xml_element)	2.0.0	int	raptor_xml_element_is_empty	(raptor_xml_element* xml_element)	-
1.4.21	void	raptor_xml_element_set_attributes	(raptor_xml_element* xml_element, raptor_qname **attributes, int count)	2.0.0	void	raptor_xml_element_set_attributes	(raptor_xml_element* xml_element, raptor_qname **attributes, int count)	-
1.4.21	int	raptor_xml_escape_string	(const unsigned char* string, size_t len, unsigned char* buffer, size_t length, char quote, raptor_simple_message_handler error_handler, void *error_data)	2.0.0	int	raptor_xml_escape_string	(raptor_world *world, const unsigned char* string, size_t len, unsigned char* buffer, size_t length, char quote)	-
1.4.21	int	raptor_xml_name_check	(const unsigned char* string, size_t length, int xml_version)	2.0.0	int	raptor_xml_name_check	(const unsigned char* string, size_t length, int xml_version)	-
1.4.21	void	raptor_xml_writer_cdata	(raptor_xml_writer* xml_writer, const unsigned char* s)	2.0.0	void	raptor_xml_writer_cdata	(raptor_xml_writer* xml_writer, const unsigned char* s)	-
1.4.21	void	raptor_xml_writer_cdata_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	2.0.0	void	raptor_xml_writer_cdata_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	-
1.4.21	void	raptor_xml_writer_comment	(raptor_xml_writer* xml_writer, const unsigned char* s)	2.0.0	void	raptor_xml_writer_comment	(raptor_xml_writer* xml_writer, const unsigned char* s)	-
1.4.21	void	raptor_xml_writer_comment_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	2.0.0	void	raptor_xml_writer_comment_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	-
1.4.21	void	raptor_xml_writer_empty_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	2.0.0	void	raptor_xml_writer_empty_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	-
1.4.21	void	raptor_xml_writer_end_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	2.0.0	void	raptor_xml_writer_end_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	-
1.4.21	int	raptor_xml_writer_features_enumerate	(const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_XML_WRITER
1.4.21	int	raptor_xml_writer_features_enumerate_v2	(raptor_world* world, const raptor_feature feature, const char* *name, raptor_uri **uri, const char* *label)	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	Call with domain = RAPTOR_DOMAIN_XML_WRITER
1.4.21	void	raptor_xml_writer_flush	(raptor_xml_writer* xml_writer)	2.0.0	void	raptor_xml_writer_flush	(raptor_xml_writer* xml_writer)	-
1.4.21	int	raptor_xml_writer_get_depth	(raptor_xml_writer *xml_writer)	2.0.0	int	raptor_xml_writer_get_depth	(raptor_xml_writer *xml_writer)	-
1.4.21	int	raptor_xml_writer_get_feature	(raptor_xml_writer *xml_writer, raptor_feature feature)	2.0.0	int	raptor_xml_writer_get_option	(raptor_xml_writer *xml_writer, raptor_option option, char** string_p, int* integer_p)	-
1.4.21	const unsigned char*	raptor_xml_writer_get_feature_string	(raptor_xml_writer *xml_writer, raptor_feature feature)	2.0.0	const unsigned char*	raptor_xml_writer_get_option	(raptor_xml_writer *xml_writer, raptor_option option, char** string_p, int* integer_p)	-
1.4.21	void	raptor_xml_writer_newline	(raptor_xml_writer* xml_writer)	2.0.0	void	raptor_xml_writer_newline	(raptor_xml_writer* xml_writer)	-
1.4.21	void	raptor_xml_writer_raw	(raptor_xml_writer* xml_writer, const unsigned char* s)	2.0.0	void	raptor_xml_writer_raw	(raptor_xml_writer* xml_writer, const unsigned char* s)	-
1.4.21	void	raptor_xml_writer_raw_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	2.0.0	void	raptor_xml_writer_raw_counted	(raptor_xml_writer* xml_writer, const unsigned char* s, unsigned int len)	-
1.4.21	int	raptor_xml_writer_set_feature	(raptor_xml_writer *xml_writer, raptor_feature feature, int value)	2.0.0	int	raptor_xml_writer_set_option	(raptor_xml_writer *xml_writer, raptor_option option, char* string, int integer)	-
1.4.21	int	raptor_xml_writer_set_feature_string	(raptor_xml_writer *xml_writer, raptor_feature feature, const unsigned char* value)	2.0.0	int	raptor_xml_writer_set_option	(raptor_xml_writer *xml_writer, raptor_option option, char* string, int integer)	-
1.4.21	void	raptor_xml_writer_start_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	2.0.0	void	raptor_xml_writer_start_element	(raptor_xml_writer* xml_writer, raptor_xml_element *element)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_add	(raptor_avltree* tree, void* p_data)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_delete	(raptor_avltree* tree, void* p_data)	-
1.4.21	-	-	-	2.0.0	void*	raptor_avltree_iterator_get	(raptor_avltree_iterator* iterator)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_iterator_is_end	(raptor_avltree_iterator* iterator)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_iterator_next	(raptor_avltree_iterator* iterator)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_print	(raptor_avltree* tree, FILE* stream)	-
1.4.21	-	-	-	2.0.0	void*	raptor_avltree_remove	(raptor_avltree* tree, void* p_data)	-
1.4.21	-	-	-	2.0.0	void*	raptor_avltree_search	(raptor_avltree* tree, const void* p_data)	-
1.4.21	-	-	-	2.0.0	void	raptor_avltree_set_print_handler	(raptor_avltree* tree, raptor_data_print_handler print_handler)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_size	(raptor_avltree* tree)	-
1.4.21	-	-	-	2.0.0	int	raptor_avltree_visit	(raptor_avltree* tree, raptor_avltree_visit_handler visit_handler, void* user_data)	-
1.4.21	-	-	-	2.0.0	const char*	raptor_domain_get_label	(raptor_domain domain)	-
1.4.21	-	-	-	2.0.0	void	raptor_free_avltree	(raptor_avltree* tree)	-
1.4.21	-	-	-	2.0.0	void	raptor_free_avltree_iterator	(raptor_avltree_iterator* iterator)	-
1.4.21	-	-	-	2.0.0	void	raptor_free_option_description	(raptor_option_description* option_description)	-
1.4.21	-	-	-	2.0.0	void	raptor_free_statement	(raptor_statement *statement)	-
1.4.21	-	-	-	2.0.0	void	raptor_free_term	(raptor_term *term)	-
1.4.21	-	-	-	2.0.0	const char*	raptor_log_level_get_label	(raptor_log_level level)	-
1.4.21	-	-	-	2.0.0	raptor_avltree*	raptor_new_avltree	(raptor_data_compare_handler compare_handler, raptor_data_free_handler free_handler, unsigned int flags)	-
1.4.21	-	-	-	2.0.0	raptor_avltree_iterator*	raptor_new_avltree_iterator	(raptor_avltree* tree, void* range, raptor_data_free_handler range_free_handler, int direction)	-
1.4.21	-	-	-	2.0.0	raptor_sequence*	raptor_new_sequence_with_context	(raptor_data_context_free_handler* free_handler, raptor_data_context_print_handler* print_handler, void* handler_context)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_new_term_from_blank	(raptor_world* world, const unsigned char* blank)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_new_term_from_counted_blank	(raptor_world* world, const unsigned char* blank, size_t length)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_new_term_from_literal	(raptor_world* world, const unsigned char* literal, raptor_uri* datatype, const unsigned char* language)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_new_term_from_counted_literal	(raptor_world* world, const unsigned char* literal, size_t literal_len, raptor_uri* datatype, const unsigned char* language, unsigned char language_len)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_new_term_from_uri	(raptor_world* world, raptor_uri* uri)	-
1.4.21	-	-	-	2.0.0	raptor_uri*	raptor_new_uri_from_counted_string	(raptor_world* world, const unsigned char* uri_string, size_t length)	-
1.4.21	-	-	-	2.0.0	const char*	raptor_option_get_value_type_label	(const raptor_option_value_type type)	-
1.4.21	-	-	-	2.0.0	raptor_uri*	raptor_parser_get_graph	(raptor_parser* rdf_parser)	-
1.4.21	-	-	-	2.0.0	int	raptor_parser_parse_iostream	(raptor_parser* rdf_parser, raptor_iostream *iostr, raptor_uri *base_uri)	-
1.4.21	-	-	-	2.0.0	unsigned char*	raptor_world_generate_bnodeid	(raptor_world *world)	-
1.4.21	-	-	-	2.0.0	int	raptor_serializer_flush	(raptor_serializer *rdf_serializer)	-
1.4.21	-	-	-	2.0.0	raptor_syntax_description*	raptor_serializer_get_description	(raptor_serializer* rdf_serializer)	-
1.4.21	-	-	-	2.0.0	raptor_statement*	raptor_new_statement	(raptor_world *world)	-
1.4.21	-	-	-	2.0.0	raptor_statement*	raptor_new_statement_from_nodes	(raptor_world* world, raptor_term *subject, raptor_term *predicate, raptor_term *object, raptor_term *graph)	-
1.4.21	-	-	-	2.0.0	void	raptor_statement_init	(raptor_statement *statement, raptor_world *world)	-
1.4.21	-	-	-	2.0.0	void	raptor_statement_clear	(raptor_statement *statement)	-
1.4.21	-	-	-	2.0.0	raptor_statement*	raptor_statement_copy	(raptor_statement *statement)	-
1.4.21	-	-	-	2.0.0	int	raptor_statement_equals	(const raptor_statement* s1, const raptor_statement* s2)	-
1.4.21	-	-	-	2.0.0	unsigned char*	raptor_term_to_counted_string	(raptor_term *term, size_t* len_p)	-
1.4.21	-	-	-	2.0.0	unsigned char*	raptor_term_to_string	(raptor_term *term)	-
1.4.21	-	-	-	2.0.0	int	raptor_term_compare	(const raptor_term *t1, const raptor_term *t2)	-
1.4.21	-	-	-	2.0.0	raptor_term*	raptor_term_copy	(raptor_term* term)	-
1.4.21	-	-	-	2.0.0	int	raptor_term_equals	(raptor_term* term1, raptor_term* term2)	-
1.4.21	-	-	-	2.0.0	int	raptor_term_ntriples_write	(const raptor_term *term, raptor_iostream* iostr)	-
1.4.21	-	-	-	2.0.0	raptor_world*	raptor_uri_get_world	(raptor_uri *uri)	-
1.4.21	-	-	-	2.0.0	raptor_option_description*	raptor_world_get_option_description	(raptor_world* world, const raptor_domain domain, const raptor_option option)	-
1.4.21	-	-	-	2.0.0	int	raptor_world_is_parser_name	(raptor_world* world, const char* name)	-
1.4.21	-	-	-	2.0.0	int	raptor_world_set_log_handler	(raptor_world *world, void *user_data, raptor_log_handler handler)	-
1.4.21	-	-	-	2.0.0	int	raptor_syntax_description_validate	      (raptor_syntax_description* desc)	-
2.0.3	-	-	-	2.0.4	int	raptor_bnodeid_ntriples_write	(const unsigned char *bnodeid, size_t len, raptor_iostream *iostr)	-
2.0.3	-	-	-	2.0.4	int	raptor_www_set_ssl_cert_options	(raptor_www* www, const char* cert_filename, const char* cert_type, const char* cert_passphrase)	-
2.0.4	-	-	-	2.0.5	int	raptor_unicode_utf8_strlen	(const unsigned char *string, size_t length)	-
2.0.4	-	-	-	2.0.5	size_t	raptor_unicode_utf8_substr	(unsigned char* dest, size_t* dest_length_p, const unsigned char* src, size_t src_length, int startingLoc, int length)	-
2.0.4	-	-	-	2.0.5	int	raptor_vsnprintf2	(char *buffer, size_t size, const char *format, va_list arguments)	Deprecates raptor_vsnprintf()
2.0.4	-	-	-	2.0.5	int	raptor_snprintf	(char *buffer, size_t size, const char *format, ...)	-
2.0.4	-	-	-	2.0.5	int	raptor_vasprintf	(char **ret, const char *format, va_list arguments)	-
2.0.5	-	-	-	2.0.6	int	raptor_sequence_swap	(raptor_sequence* seq, int i, int j)	-
2.0.5	-	-	-	2.0.6	int	raptor_sequence_reverse	(raptor_sequence* seq, int start_index, int length)	-
2.0.5	-	-	-	2.0.6	int	raptor_sequence_next_permutation	(raptor_sequence *seq, raptor_data_compare_handler compare)	-
2.0.6	-	-	-	2.0.7	char*	raptor_uri_uri_string_to_counted_filename_fragment	(const unsigned char *uri_string, size_t* len_p, unsigned char **fragment_p, size_t* fragment_len_p)	-
2.0.6	-	-	-	2.0.7	int	raptor_uri_file_exists	(raptor_uri* uri)	-
2.0.6	-	-	-	2.0.7	int	raptor_uri_filename_exists	(const unsigned char* path)	-
2.0.6	-	-	-	2.0.7	raptor_uri*	raptor_new_uri_from_uri_or_file_string	(raptor_world* world, raptor_uri* base_uri, const unsigned char* uri_or_file_string)	-
2.0.6	-	-	-	2.0.7	void	raptor_sax2_set_uri_filter	(raptor_sax2* sax2, raptor_uri_filter_func filter, void *user_data)	-
2.0.6	-	-	-	2.0.7	int	raptor_www_set_ssl_verify_options	(raptor_www* www, int verify_peer, int verify_host)	-
2.0.7	-	-	-	2.0.8	int	raptor_uri_turtle_write	(raptor_world *world, raptor_iostream* iostr, raptor_uri* uri, raptor_namespace_stack *nstack, raptor_uri *base_uri)	-
2.0.7	-	-	-	2.0.8	int	raptor_term_turtle_write	(raptor_iostream* iostr, raptor_term* term, raptor_namespace_stack *nstack, raptor_uri *base_uri)	-
2.0.7	-	-	-	2.0.8	unsigned char*	raptor_uri_to_turtle_counted_string	(raptor_world *world, raptor_uri* uri, raptor_namespace_stack *nstack, raptor_uri *base_uri, size_t *len_p)	-
2.0.7	-	-	-	2.0.8	unsigned char*	raptor_uri_to_turtle_string	(raptor_world *world, raptor_uri* uri, raptor_namespace_stack *nstack, raptor_uri *base_uri)	-
2.0.7	-	-	-	2.0.8	unsigned char*	raptor_term_to_turtle_counted_string	(raptor_term* term, raptor_namespace_stack *nstack, raptor_uri *base_uri, size_t *len_p)	-
2.0.7	-	-	-	2.0.8	unsigned char*	raptor_term_to_turtle_string	(raptor_term* term, raptor_namespace_stack *nstack, raptor_uri *base_uri)	-
2.0.7	-	-	-	2.0.8	raptor_uri*	raptor_new_uri_relative_to_base_counted	(raptor_world* world, raptor_uri *base_uri, const unsigned char *uri_string, size_t uri_len)	-
2.0.9	-	-	-	2.0.10	int	raptor_string_escaped_write	(const unsigned char *string, size_t len, const char delim, unsigned int flags, raptor_iostream *iostr)	-
2.0.9	-	-	-	2.0.10	int	raptor_term_escaped_write	(const raptor_term *term, unsigned int flags, raptor_iostream* iostr)	-
2.0.9	-	-	-	2.0.10	int	raptor_uri_escaped_write	(raptor_uri* uri, raptor_uri* base_uri, unsigned int flags, raptor_iostream *iostr)	-
2.0.10	-	-	-	2.0.11	int	raptor_uri_uri_string_is_absolute	(const unsigned char* uri_string)	-
2.0.10	-	-	-	2.0.11	unsigned char*	raptor_qname_format_as_xml	(const raptor_qname *qname, size_t *length_p)	-
2.0.11	-	-	-	2.0.12	raptor_term*	raptor_new_term_from_counted_string	(raptor_world* world, unsigned char* string, size_t length)	-
2.0.13	-	-	-	2.0.14	unsigned char*	raptor_uri_counted_filename_to_uri_string	(const char *filename, size_t filename_len)	-
2.0.14	-	-	-	2.0.15	void	raptor_sort_r	(void *base, size_t nel, size_t width, raptor_data_compare_arg_handler compar, void *user_data)	-
2.0.14	-	-	-	2.0.15	void	raptor_sequence_sort_r	(raptor_sequence* seq, raptor_data_compare_arg_handler compare, void* user_data)	Uses raptor_sort_r() internally.
2.0.14	-	-	-	2.0.15	int	raptor_world_get_parsers_count	(raptor_world* world)	-
2.0.14	-	-	-	2.0.15	int	raptor_world_get_serializers_count	(raptor_world* world)	-
2.0.15	-	-	-	2.0.16	int	raptor_www_set_user_agent2	(raptor_www *www, const char *user_agent, size_t user_agent_len)	-
2.0.15	-	-	-	2.0.16	int	raptor_www_set_proxy2	(raptor_www *www, const char *proxy, size_t proxy_len)	-
2.0.15	-	-	-	2.0.16	int	raptor_www_set_http_accept2	(raptor_www *www, const char *value, size_t value_len)	-
2.0.15	void	raptor_www_set_user_agent	(raptor_www *www, const char *user_agent)	2.0.16	-	-	-	Deprecated for raptor_www_set_user_agent2
2.0.15	void	raptor_www_set_proxy	(raptor_www *www, const char *proxy)	2.0.16	-	-	-	Deprecated for raptor_www_set_proxy2
2.0.15	void	raptor_www_set_http_accept	(raptor_www *www, const char *value)	2.0.16	-	-	-	Deprecated for raptor_www_set_http_accept2
2.0.15	-	-	-	2.0.16	void	raptor_avltree_trim	(raptor_avltree* tree)	-
#
# Types
#
1.4.21	type	raptor_error_handlers	-	2.0.0	type	-	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	type	raptor_feature	-	2.0.0	type	raptor_option	-	And new option RAPTOR_OPTION_STRICT added.
1.4.21	type	raptor_free_uri_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_graph_handler	-	2.0.0	type	raptor_graph_mark_handler	-	-
1.4.21	type	raptor_identifier	-	2.0.0	type	raptor_term	-	Fields changed to be simpler #raptor_term_type and #raptor_term_value
1.4.21	type	raptor_identifier_type	-	2.0.0	type	raptor_term_type	-	Removed several enum values to leave just URI, blank and literal types.
1.4.21	type	raptor_iostream_handler2	-	2.0.0	type	raptor_iostream_handler	-	-
1.4.21	type	raptor_iostream_write_end_func	-	2.0.0	type	raptor_iostream_write_end_func	-	handler returns an int
1.4.21	type	raptor_libxml_flags	-	2.0.0	type	-	-	replaced by raptor_world_set_flags() with #raptor_world_flag
1.4.21	type	raptor_log_level	-	2.0.0	type	raptor_log_level	-	Added RAPTOR_LOG_LEVEL_TRACE, RAPTOR_LOG_LEVEL_DEBUG, RAPTOR_LOG_LEVEL_INFO. RAPTOR_LOG_LEVEL_WARNING renamed RAPTOR_LOG_LEVEL_WARN
1.4.21	type	raptor_message_handler	-	2.0.0	type	-	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	type	raptor_message_handler_closure	-	2.0.0	type	-	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	type	raptor_new_uri_for_rdf_concept_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_new_uri_from_uri_local_name_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_new_uri_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_new_uri_relative_to_base_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_ntriples_parser	-	2.0.0	type	-	-	replaced by #raptor_parser
1.4.21	type	raptor_ntriples_term_type	-	2.0.0	type	-	-	replaced by #raptor_term_type
1.4.21	type	raptor_sequence_free_function	-	2.0.0	type	raptor_data_free_handler	-	-
1.4.21	type	raptor_sequence_free_handler_v2	-	2.0.0	type	raptor_data_context_free_handler	-	-
1.4.21	type	raptor_sequence_print_handler	-	2.0.0	type	raptor_data_print_handler	-	-
1.4.21	type	raptor_sequence_print_handler_v2	-	2.0.0	type	raptor_data_context_print_handler	-	-
1.4.21	type	raptor_simple_message_handler	-	2.0.0	type	raptor_log_handler	-	Replaced by generic raptor log mechanism.  See raptor_world_set_log_handler()
1.4.21	type	raptor_statement	-	2.0.0	type	raptor_statement	-	fields changed to use #raptor_term
1.4.21	type	raptor_statement_handler	-	2.0.0	type	raptor_statement_handler	-	added const
1.4.21	type	raptor_statement_v2	-	2.0.0	type	raptor_statement	-	Fields changed to be a 3 or 4 tuple of #raptor_term
1.4.21	type	raptor_uri_as_counted_string_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_as_string_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_compare_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_copy_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_equals_func	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_handler	-	2.0.0	type	-	-	Entire URI implementation is internal and not replaceable.
1.4.21	type	raptor_uri_source	-	2.0.0	type	-	-	URI source was useless.
1.4.21	type	-	-	2.0.0	type	raptor_avltree	-	-
1.4.21	type	-	-	2.0.0	type	raptor_avltree_bitflags	-	-
1.4.21	type	-	-	2.0.0	type	raptor_avltree_iterator	-	-
1.4.21	type	-	-	2.0.0	type	raptor_avltree_visit_handler	-	-
1.4.21	type	-	-	2.0.0	type	raptor_data_compare_handler	-	-
1.4.21	type	-	-	2.0.0	type	raptor_data_context_free_handler	-	-
1.4.21	type	-	-	2.0.0	type	raptor_data_malloc_handler	-	-
1.4.21	type	-	-	2.0.0	type	raptor_domain	-	-
1.4.21	type	-	-	2.0.0	type	raptor_graph_mark_flags	-	-
1.4.21	type	-	-	2.0.0	type	raptor_log_message	-	-
1.4.21	type	-	-	2.0.0	type	raptor_option_description	-	-
1.4.21	type	-	-	2.0.0	type	raptor_option_value_type	-	-
1.4.21	type	-	-	2.0.0	type	raptor_syntax_bitflags	-	-
1.4.21	type	-	-	2.0.0	type	raptor_syntax_description	-	-
1.4.21	type	-	-	2.0.0	type	raptor_term_blank_value	-	-
1.4.21	type	-	-	2.0.0	type	raptor_term_literal_value	-	-
1.4.21	type	-	-	2.0.0	type	raptor_term_value	-	-
1.4.21	type	-	-	2.0.0	type	raptor_type_q	-	-
2.0.9	type	-	-	2.0.10	type	raptor_escaped_write_bitflags	-	-
2.0.14	type	-	-	2.0.15	type	raptor_data_compare_arg_handler	-	Used by raptor_sort_r()
#
# Enums and constants
#
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_UNKNOWN	-	2.0.0	enum	RAPTOR_TERM_TYPE_UNKNOWN	-	-
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_RESOURCE	-	2.0.0	enum	RAPTOR_TERM_TYPE_URI	-	-
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_ANONYMOUS	-	2.0.0	enum	RAPTOR_TERM_TYPE_BLANK	-	-
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_PREDICATE	-	2.0.0	enum	RAPTOR_TERM_TYPE_URI	-	-
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_ORDINAL	-	2.0.0	enum	-	-	Deprecated value deleted.
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_LITERAL	-	2.0.0	enum	RAPTOR_TERM_TYPE_LITERAL	-	-
1.4.21	enum	RAPTOR_IDENTIFIER_TYPE_XML_LITERAL	-	2.0.0	enum	RAPTOR_TERM_TYPE_LITERAL	-	-
1.4.21	enum	RAPTOR_URI_SOURCE_UNKNOWN	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_NOT_URI	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_ELEMENT	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_ATTRIBUTE	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_ID	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_URI	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_GENERATED	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_URI_SOURCE_BLANK_ID	-	2.0.0	enum	-	-	URI source concept removed.
1.4.21	enum	RAPTOR_NTRIPLES_TERM_TYPE_URI_REF	-	2.0.0	enum	RAPTOR_TERM_TYPE_URI	-	-
1.4.21	enum	RAPTOR_NTRIPLES_TERM_TYPE_BLANK_NODE	-	2.0.0	enum	RAPTOR_TERM_TYPE_BLANK	-	-
1.4.21	enum	RAPTOR_NTRIPLES_TERM_TYPE_LITERAL	-	2.0.0	enum	RAPTOR_TERM_TYPE_LITERAL	-	-
1.4.21	enum	RAPTOR_FEATURE_SCANNING 	-	2.0.0	enum	RAPTOR_OPTION_SCANNING	-	-
1.4.21	enum	RAPTOR_FEATURE_ASSUME_IS_RDF	-	2.0.0	enum	-	-	Never used.
1.4.21	enum	RAPTOR_FEATURE_ALLOW_NON_NS_ATTRIBUTES	-	2.0.0	enum	RAPTOR_OPTION_ALLOW_NON_NS_ATTRIBUTES	-	-
1.4.21	enum	RAPTOR_FEATURE_ALLOW_OTHER_PARSETYPES	-	2.0.0	enum	RAPTOR_OPTION_ALLOW_OTHER_PARSETYPES	-	-
1.4.21	enum	RAPTOR_FEATURE_ALLOW_BAGID	-	2.0.0	enum	RAPTOR_OPTION_ALLOW_BAGID	-	-
1.4.21	enum	RAPTOR_FEATURE_ALLOW_RDF_TYPE_RDF_LIST	-	2.0.0	enum	RAPTOR_OPTION_ALLOW_RDF_TYPE_RDF_LIST	-	-
1.4.21	enum	RAPTOR_FEATURE_NORMALIZE_LANGUAGE	-	2.0.0	enum	RAPTOR_OPTION_NORMALIZE_LANGUAGE	-	-
1.4.21	enum	RAPTOR_FEATURE_NON_NFC_FATAL	-	2.0.0	enum	RAPTOR_OPTION_NON_NFC_FATAL	-	-
1.4.21	enum	RAPTOR_FEATURE_WARN_OTHER_PARSETYPES	-	2.0.0	enum	RAPTOR_OPTION_WARN_OTHER_PARSETYPES	-	-
1.4.21	enum	RAPTOR_FEATURE_CHECK_RDF_ID	-	2.0.0	enum	RAPTOR_OPTION_CHECK_RDF_ID	-	-
1.4.21	enum	RAPTOR_FEATURE_RELATIVE_URIS	-	2.0.0	enum	RAPTOR_OPTION_RELATIVE_URIS	-	-
1.4.21	enum	RAPTOR_FEATURE_START_URI	-	2.0.0	enum	-	-	Never used.
1.4.21	enum	RAPTOR_FEATURE_WRITER_AUTO_INDENT	-	2.0.0	enum	RAPTOR_OPTION_WRITER_AUTO_INDENT	-	-
1.4.21	enum	RAPTOR_FEATURE_WRITER_AUTO_EMPTY	-	2.0.0	enum	RAPTOR_OPTION_WRITER_AUTO_EMPTY	-	-
1.4.21	enum	RAPTOR_FEATURE_WRITER_INDENT_WIDTH	-	2.0.0	enum	RAPTOR_OPTION_WRITER_INDENT_WIDTH	-	-
1.4.21	enum	RAPTOR_FEATURE_WRITER_XML_VERSION	-	2.0.0	enum	RAPTOR_OPTION_WRITER_XML_VERSION	-	-
1.4.21	enum	RAPTOR_FEATURE_WRITER_XML_DECLARATION	-	2.0.0	enum	RAPTOR_OPTION_WRITER_XML_DECLARATION	-	-
1.4.21	enum	RAPTOR_FEATURE_NO_NET	-	2.0.0	enum	RAPTOR_OPTION_NO_NET	-	-
1.4.21	enum	RAPTOR_FEATURE_RESOURCE_BORDER	-	2.0.0	enum	RAPTOR_OPTION_RESOURCE_BORDER	-	-
1.4.21	enum	RAPTOR_FEATURE_LITERAL_BORDER	-	2.0.0	enum	RAPTOR_OPTION_LITERAL_BORDER	-	-
1.4.21	enum	RAPTOR_FEATURE_BNODE_BORDER	-	2.0.0	enum	RAPTOR_OPTION_BNODE_BORDER	-	-
1.4.21	enum	RAPTOR_FEATURE_RESOURCE_FILL	-	2.0.0	enum	RAPTOR_OPTION_RESOURCE_FILL	-	-
1.4.21	enum	RAPTOR_FEATURE_LITERAL_FILL	-	2.0.0	enum	RAPTOR_OPTION_LITERAL_FILL	-	-
1.4.21	enum	RAPTOR_FEATURE_BNODE_FILL	-	2.0.0	enum	RAPTOR_OPTION_BNODE_FILL	-	-
1.4.21	enum	RAPTOR_FEATURE_HTML_TAG_SOUP	-	2.0.0	enum	RAPTOR_OPTION_HTML_TAG_SOUP	-	-
1.4.21	enum	RAPTOR_FEATURE_MICROFORMATS	-	2.0.0	enum	RAPTOR_OPTION_MICROFORMATS	-	-
1.4.21	enum	RAPTOR_FEATURE_HTML_LINK	-	2.0.0	enum	RAPTOR_OPTION_HTML_LINK	-	-
1.4.21	enum	RAPTOR_FEATURE_WWW_TIMEOUT	-	2.0.0	enum	RAPTOR_OPTION_WWW_TIMEOUT	-	-
1.4.21	enum	RAPTOR_FEATURE_WRITE_BASE_URI	-	2.0.0	enum	RAPTOR_OPTION_WRITE_BASE_URI	-	-
1.4.21	enum	RAPTOR_FEATURE_WWW_HTTP_CACHE_CONTROL	-	2.0.0	enum	RAPTOR_OPTION_WWW_HTTP_CACHE_CONTROL	-	-
1.4.21	enum	RAPTOR_FEATURE_WWW_HTTP_USER_AGENT	-	2.0.0	enum	RAPTOR_OPTION_WWW_HTTP_USER_AGENT	-	-
1.4.21	enum	RAPTOR_FEATURE_JSON_CALLBACK	-	2.0.0	enum	RAPTOR_OPTION_JSON_CALLBACK	-	-
1.4.21	enum	RAPTOR_FEATURE_JSON_EXTRA_DATA	-	2.0.0	enum	RAPTOR_OPTION_JSON_EXTRA_DATA	-	-
1.4.21	enum	RAPTOR_FEATURE_RSS_TRIPLES	-	2.0.0	enum	RAPTOR_OPTION_RSS_TRIPLES	-	-
1.4.21	enum	RAPTOR_FEATURE_ATOM_ENTRY_URI	-	2.0.0	enum	RAPTOR_OPTION_ATOM_ENTRY_URI	-	-
1.4.21	enum	RAPTOR_FEATURE_PREFIX_ELEMENTS	-	2.0.0	enum	RAPTOR_OPTION_PREFIX_ELEMENTS	-	-
1.4.21	enum	RAPTOR_FEATURE_LAST	-	2.0.0	enum	RAPTOR_OPTION_LAST	-	-
1.4.21	enum	RAPTOR_GENID_TYPE_BNODEID	-	2.0.0	enum	-	-	There is just one type of generated ID now.
1.4.21	enum	RAPTOR_GENID_TYPE_BAGID	-	2.0.0	enum	-	-	There is just one type of generated ID now.
1.4.21	enum	RAPTOR_LOG_LEVEL_NONE	-	2.0.0	enum	RAPTOR_LOG_LEVEL_NONE	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_LOG_LEVEL_TRACE	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_LOG_LEVEL_DEBUG	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_LOG_LEVEL_INFO	-	-
1.4.21	enum	RAPTOR_LOG_LEVEL_WARNING	-	2.0.0	enum	RAPTOR_LOG_LEVEL_WARN	-	-
1.4.21	enum	RAPTOR_LOG_LEVEL_ERROR	-	2.0.0	enum	RAPTOR_LOG_LEVEL_ERROR	-	-
1.4.21	enum	RAPTOR_LOG_LEVEL_FATAL	-	2.0.0	enum	RAPTOR_LOG_LEVEL_FATAL	-	-
1.4.21	enum	RAPTOR_LOG_LEVEL_LAST	-	2.0.0	enum	RAPTOR_LOG_LEVEL_LAST	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_NONE	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_IOSTREAM	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_NAMESPACE	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_PARSER	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_QNAME	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_SAX2	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_SERIALIZER	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_TERM	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_TURTLE_WRITER	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_URI	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_WORLD	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_WWW	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_XML_WRITER	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_DOMAIN_LAST	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_GRAPH_MARK_START	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_GRAPH_MARK_DECLARED	-	-
1.4.21	enum	RAPTOR_LIBXML_FLAGS_GENERIC_ERROR_SAVE	-	2.0.0	enum	RAPTOR_WORLD_FLAG_LIBXML_GENERIC_ERROR_SAVE	-	Flag setting is done by raptor_world_set_flags()
1.4.21	enum	RAPTOR_LIBXML_FLAGS_STRUCTURED_ERROR_SAVE	-	2.0.0	enum	RAPTOR_WORLD_FLAG_LIBXML_STRUCTURED_ERROR_SAVE	-	Flag setting is done by raptor_world_set_flags()
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_WORLD_FLAG_URI_INTERNING	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_WORLD_FLAG_WWW_SKIP_INIT_FINISH	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_OPTION_VALUE_TYPE_BOOL	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_OPTION_VALUE_TYPE_INT	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_OPTION_VALUE_TYPE_STRING	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_OPTION_VALUE_TYPE_URI	-	-
1.4.21	enum	-	-	2.0.0	enum	RAPTOR_OPTION_VALUE_TYPE_LAST	-	-
2.0.6	enum	-	-	2.0.7	enum	RAPTOR_OPTION_NO_FILE	-	-
2.0.6	enum	-	-	2.0.7	enum	RAPTOR_OPTION_WWW_SSL_VERIFY_PEER	-	-
2.0.6	enum	-	-	2.0.7	enum	RAPTOR_OPTION_WWW_SSL_VERIFY_HOST	-	-
2.0.6	enum	-	-	2.0.7	enum	RAPTOR_OPTION_LOAD_EXTERNAL_ENTITIES	-	-
2.0.15	enum	-	-	2.0.16	enum	raptor_rdf_schema_namespace_uri_len	-	-