15 lines
254 B
C
15 lines
254 B
C
//
|
|
// Created by marcsello on 05/11/2020.
|
|
//
|
|
|
|
#ifndef CAFF_PREVIEWER_UTILS_H
|
|
#define CAFF_PREVIEWER_UTILS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
bool contains(const uint8_t *data, uint64_t data_len, uint8_t what);
|
|
|
|
|
|
#endif //CAFF_PREVIEWER_UTILS_H
|