#include <string.h>
-#include "kds_s2000w_debug.h"
#include "kds_s2000w_image_type_check.h"
bool kds_s2000w_image_type_check_is_tiff(const blobdata_t* image)
{
- kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_tiff");
-
if (image->size < 4)
return 0;
bool kds_s2000w_image_type_check_is_pnm(const blobdata_t* image)
{
- kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_pnm");
-
if (image->size < 2)
return 0;
bool kds_s2000w_image_type_check_is_jpeg(const blobdata_t* image)
{
- kds_s2000w_debug_printf(ALL, "kds_s2000w_image_type_check_is_jpeg");
-
if (image->size < 2)
return 0;