summaryrefslogtreecommitdiff
path: root/source/kit/status.h
blob: c898e366afb96e7cdb8582ba89ef16054ad8b712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef KIT_STATUS_H
#define KIT_STATUS_H

#ifdef __cplusplus
extern "C" {
#endif

enum { KIT_OK, KIT_ERROR };

typedef int kit_status_t;

#ifdef __cplusplus
}
#endif

#endif