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 
10 #pragma once
11 
22 #include "vfs.h"
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 #if defined(MODULE_PERIPH_HWRNG) || defined(DOXYGEN)
32 extern const vfs_file_ops_t hwrng_vfs_ops;
33 #endif
34 
35 #if defined(MODULE_RANDOM) || defined(DOXYGEN)
39 extern const vfs_file_ops_t random_vfs_ops;
40 #endif
41 
42 #ifdef __cplusplus
43 }
44 #endif
45 
const vfs_file_ops_t random_vfs_ops
urandom driver for vfs
const vfs_file_ops_t hwrng_vfs_ops
hwrng driver for vfs
Operations on open files.
Definition: vfs.h:447