mz_os.h   mz_os.h 
skipping to change at line 110 skipping to change at line 110
/************************************************************************** */ /************************************************************************** */
/* Platform specific functions */ /* Platform specific functions */
wchar_t *mz_os_unicode_string_create(const char *string, int32_t encoding); wchar_t *mz_os_unicode_string_create(const char *string, int32_t encoding);
/* Create unicode string from a utf8 string */ /* Create unicode string from a utf8 string */
void mz_os_unicode_string_delete(wchar_t **string); void mz_os_unicode_string_delete(wchar_t **string);
/* Delete a unicode string that was created */ /* Delete a unicode string that was created */
uint8_t *mz_os_utf8_string_create(const char *string, int32_t encoding); char *mz_os_utf8_string_create(const char *string, int32_t encoding);
/* Create a utf8 string from a string with another encoding */ /* Create a utf8 string from a string with another encoding */
void mz_os_utf8_string_delete(uint8_t **string); void mz_os_utf8_string_delete(char **string);
/* Delete a utf8 string that was created */ /* Delete a utf8 string that was created */
int32_t mz_os_rand(uint8_t *buf, int32_t size); int32_t mz_os_rand(uint8_t *buf, int32_t size);
/* Random number generator (not cryptographically secure) */ /* Random number generator (not cryptographically secure) */
int32_t mz_os_rename(const char *source_path, const char *target_path); int32_t mz_os_rename(const char *source_path, const char *target_path);
/* Rename a file */ /* Rename a file */
int32_t mz_os_unlink(const char *path); int32_t mz_os_unlink(const char *path);
/* Delete an existing file */ /* Delete an existing file */
 End of changes. 2 change blocks. 
2 lines changed or deleted 2 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/