FILE* boinc fopen(const char*, const char*)
From Unofficial BOINC Wiki
- The title of this article is incorrect due to technical limitations. The correct title is correct-title.
Contents |
[edit] Description
Attempts to open the specified file under the given mode and associate a stream with it (see `fopen()`).
[edit] Parameters
| Parameter Type | Parameter Name | Purpose & Content |
|---|---|---|
| const char* | path | The location of a file, path and file name. |
| const char* | mode | The file mode under which the file in question should be opened. |
[edit] Returns
A FILE* (file pointer structure) describing the specified file if successful, NULL on error.
[edit] Include & Implementation
| Code Location: | lib/filesys.C |
| Include By: | #include "lib/filesys.h" |
| Function: | FILE* boinc_fopen(const char* path, const char* mode) |
| Documentation: | BOINC Source Code: boinc/lib/filesys.C |
| CVS Extract: | cvs -d :pserver:anonymous:@alien.ssl.berkeley.edu:/home/cvs/cvsroot checkout boinc/lib/filesys.C |
[edit] Compatibility
[edit] Code Sample
None.
RSS Feeds

