aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
blob: 34441b5141e927d7a0a39b1d4aa389cd13631d53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ORYX_TYPES_H
#define ORYX_TYPES_H

#include <stddef.h>
#include <stdint.h>

typedef unsigned char uchar;
typedef uint32_t      idx_t_;

struct strview {
	const uchar *p;
	size_t len;
};

#endif /* !ORYX_TYPES_H */