#include <cstdio>
#include <cstdlib>
#include <iostream>
|
void | Mila::Helpers::fclose_check (FILE *fp, const char *file, int line) |
| Closes a file with error checking.
|
|
void | Mila::Helpers::fcloseCheck (FILE *fp) |
| Closes a file with error checking.
|
|
FILE * | Mila::Helpers::fopen_check (const char *path, const char *mode, const char *file, int line) |
| Opens a file with error checking.
|
|
FILE * | Mila::Helpers::fopenCheck (const char *path, const char *mode) |
| Opens a file with error checking.
|
|
void | Mila::Helpers::fread_check (void *ptr, size_t size, size_t nmemb, FILE *stream, const char *file, int line) |
| Reads from a file with error checking.
|
|
void | Mila::Helpers::freadCheck (void *ptr, size_t size, size_t nmemb, FILE *stream) |
| Reads from a file with error checking.
|
|
void | Mila::Helpers::fseek_check (FILE *stream, long offset, int whence, const char *file, int line) |
| Seeks to a position in a file with error checking.
|
|
void | Mila::Helpers::fseekCheck (FILE *stream, long offset, int whence) |
| Seeks to a position in a file with error checking.
|
|