Change unsigned char to uint8_t.

This commit is contained in:
2019-03-20 22:34:21 +00:00
parent 31cdaed693
commit 8abcacc22e
6 changed files with 70 additions and 68 deletions

View File

@@ -33,6 +33,8 @@
#ifndef LIBDICFORMAT_DECLS_H
#define LIBDICFORMAT_DECLS_H
#include <stdint.h>
int identify(const char *filename);
int identifyStream(FILE *imageStream);
@@ -41,7 +43,7 @@ void *open(const char *filepath);
int close(void *context);
unsigned char *read_media_tag(void *context, int tag);
uint8_t *read_media_tag(void *context, int tag);
#endif //LIBDICFORMAT_DECLS_H