random-vfs.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 OTA keys S.A.
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  *
8  */
9 
20 #ifndef RANDOM_VFS_H
21 #define RANDOM_VFS_H
22 
23 #include "vfs.h"
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 #if defined(MODULE_PERIPH_HWRNG) || defined(DOXYGEN)
30 
33 extern const vfs_file_ops_t hwrng_vfs_ops;
34 #endif
35 
36 #if defined(MODULE_RANDOM) || defined(DOXYGEN)
37 
40 extern const vfs_file_ops_t random_vfs_ops;
41 #endif
42 
43 #ifdef __cplusplus
44 }
45 #endif
46 
47 #endif /* RANDOM_VFS_H */
48 
hwrng_vfs_ops
const vfs_file_ops_t hwrng_vfs_ops
hwrng driver for vfs
random_vfs_ops
const vfs_file_ops_t random_vfs_ops
urandom driver for vfs
vfs_file_ops
Operations on open files.
Definition: vfs.h:328
vfs.h
VFS layer API declarations.