blob: c784b26662eea43cb093e203e170816ed48720e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef ORYX_TYPES_H
#define ORYX_TYPES_H
#include <stddef.h>
typedef unsigned char uchar;
struct strview {
const uchar *p;
size_t len;
};
#endif /* !ORYX_TYPES_H */
|