|
FastLED 3.9.15
|
#include "fl/stl/int.h"#include "platforms/is_platform.h"#include "fl/stl/cerrno.h"#include "fl/stl/cstring.h"
Include dependency graph for file_io.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| struct | fl::FILE_impl |
Namespaces | |
| namespace | fl |
| Base definition for an LED controller. | |
| namespace | fl::io |
Typedefs | |
| using | fl::FILE = FILE_impl |
Functions | |
| void | fl::clearerr (FILE *file) |
| Clear file error indicators. | |
| int | fl::fclose (FILE *file) |
| Close a file. | |
| int | fl::feof (FILE *file) |
| Check for end-of-file. | |
| int | fl::ferror (FILE *file) |
| Check for file error. | |
| int | fl::fflush (FILE *file) |
| Flush file buffers. | |
| FILE * | fl::fopen (const char *path, const char *mode) |
| Open a file. | |
| fl::size_t | fl::fread (void *buffer, fl::size_t size, fl::size_t count, FILE *file) |
| Read from file. | |
| int | fl::fseek (FILE *file, long offset, int origin) |
| Set file position. | |
| long | fl::ftell (FILE *file) |
| Get current file position. | |
| fl::size_t | fl::fwrite (const void *data, fl::size_t size, fl::size_t count, FILE *file) |
| Write to file. | |
Variables | |
| constexpr int | fl::io::err_bad_file = 9 |
| constexpr int | fl::io::seek_cur = 1 |
| constexpr int | fl::io::seek_end = 2 |
| constexpr int | fl::io::seek_set = 0 |