blob: 8d6f0fd78389f2b7cf8ae1a96bc4ad152e8c353a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __UTILS_H
#define __UTILS_H
#ifdef __cplusplus
extern "C" {
#endif
int
os_create_anonymous_file(off_t size);
const char*
get_camera_device(void);
#ifdef __cplusplus
}
#endif
#endif
|