Couldn't find wdiff. Falling back to builtin diff colouring...
raptor2.h | raptor2.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
*/ | */ | |||
#define RAPTOR_V2_AVAILABLE 1 | #define RAPTOR_V2_AVAILABLE 1 | |||
/** | /** | |||
* RAPTOR_VERSION: | * RAPTOR_VERSION: | |||
* | * | |||
* Raptor library version number | * Raptor library version number | |||
* | * | |||
* Format: major * 10000 + minor * 100 + release | * Format: major * 10000 + minor * 100 + release | |||
*/ | */ | |||
#define RAPTOR_VERSION 20005 | #define RAPTOR_VERSION 20006 | |||
/** | /** | |||
* RAPTOR_VERSION_STRING: | * RAPTOR_VERSION_STRING: | |||
* | * | |||
* Raptor library version string | * Raptor library version string | |||
*/ | */ | |||
#define RAPTOR_VERSION_STRING "2.0.5" | #define RAPTOR_VERSION_STRING "2.0.6" | |||
/** | /** | |||
* RAPTOR_VERSION_MAJOR: | * RAPTOR_VERSION_MAJOR: | |||
* | * | |||
* Raptor library major version | * Raptor library major version | |||
*/ | */ | |||
#define RAPTOR_VERSION_MAJOR 2 | #define RAPTOR_VERSION_MAJOR 2 | |||
/** | /** | |||
* RAPTOR_VERSION_MINOR: | * RAPTOR_VERSION_MINOR: | |||
* | * | |||
* Raptor library minor version | * Raptor library minor version | |||
*/ | */ | |||
#define RAPTOR_VERSION_MINOR 0 | #define RAPTOR_VERSION_MINOR 0 | |||
/** | /** | |||
* RAPTOR_VERSION_RELEASE: | * RAPTOR_VERSION_RELEASE: | |||
* | * | |||
* Raptor library release | * Raptor library release | |||
*/ | */ | |||
#define RAPTOR_VERSION_RELEASE 5 | #define RAPTOR_VERSION_RELEASE 6 | |||
/** | /** | |||
* RAPTOR_API: | * RAPTOR_API: | |||
* | * | |||
* Macro for wrapping API function call declarations. | * Macro for wrapping API function call declarations. | |||
* | * | |||
*/ | */ | |||
#ifndef RAPTOR_API | #ifndef RAPTOR_API | |||
# ifdef WIN32 | # ifdef WIN32 | |||
# ifdef __GNUC__ | # ifdef __GNUC__ | |||
skipping to change at line 1476 | skipping to change at line 1476 | |||
void* raptor_sequence_get_at(raptor_sequence* seq, int idx); | void* raptor_sequence_get_at(raptor_sequence* seq, int idx); | |||
RAPTOR_API | RAPTOR_API | |||
void* raptor_sequence_pop(raptor_sequence* seq); | void* raptor_sequence_pop(raptor_sequence* seq); | |||
RAPTOR_API | RAPTOR_API | |||
void* raptor_sequence_unshift(raptor_sequence* seq); | void* raptor_sequence_unshift(raptor_sequence* seq); | |||
RAPTOR_API | RAPTOR_API | |||
void* raptor_sequence_delete_at(raptor_sequence* seq, int idx); | void* raptor_sequence_delete_at(raptor_sequence* seq, int idx); | |||
RAPTOR_API | RAPTOR_API | |||
void raptor_sequence_sort(raptor_sequence* seq, raptor_data_compare_handler compare); | void raptor_sequence_sort(raptor_sequence* seq, raptor_data_compare_handler compare); | |||
RAPTOR_API | ||||
int raptor_sequence_swap(raptor_sequence* seq, int i, int j); | ||||
RAPTOR_API | ||||
int raptor_sequence_reverse(raptor_sequence* seq, int start_index, int leng th); | ||||
RAPTOR_API | ||||
int raptor_sequence_next_permutation(raptor_sequence *seq, raptor_data_comp are_handler compare); | ||||
/* helper for printing sequences of strings */ | /* helper for printing sequences of strings */ | |||
RAPTOR_API | RAPTOR_API | |||
int raptor_sequence_print(raptor_sequence* seq, FILE* fh); | int raptor_sequence_print(raptor_sequence* seq, FILE* fh); | |||
RAPTOR_API | RAPTOR_API | |||
int raptor_sequence_join(raptor_sequence* dest, raptor_sequence *src); | int raptor_sequence_join(raptor_sequence* dest, raptor_sequence *src); | |||
/* Unicode and UTF8 */ | /* Unicode and UTF8 */ | |||
/** | /** | |||
End of changes. 4 change blocks. | ||||
3 lines changed or deleted | 9 lines changed or added | |||