Last change
on this file since 1298 was
1153,
checked in by Maciej Komosinski, 3 years ago
|
Added debugging messages and a non-VirtFILE implementation of readUntilEOL()
|
File size:
836 bytes
|
Line | |
---|
1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/
|
---|
2 | // Copyright (C) 1999-2021 Maciej Komosinski and Szymon Ulatowski.
|
---|
3 | // See LICENSE.txt for details.
|
---|
4 |
|
---|
5 | #ifndef _UTIL_FILES_H_
|
---|
6 | #define _UTIL_FILES_H_
|
---|
7 |
|
---|
8 | #include "nonstd_stl.h"
|
---|
9 | #ifdef USE_VIRTFILE
|
---|
10 | #include "virtfile/virtfile.h"
|
---|
11 | #else
|
---|
12 | #include <stdio.h>
|
---|
13 | #endif
|
---|
14 |
|
---|
15 | bool readCompleteFile(const char* filename, vector<char>& data, bool warn_on_missing_file = true);
|
---|
16 | bool readCompleteFile(const char* filename, string& out, bool warn_on_missing_file = true);
|
---|
17 | bool writeCompleteFile(const char* filename, const std::string& text, bool warn_on_fail = true);
|
---|
18 | bool writeCompleteFile(const char* filename, vector<char>& data, bool warn_on_fail = true);
|
---|
19 | #ifdef USE_VIRTFILE
|
---|
20 | string readUntilEOL(VirtFILE *f);
|
---|
21 | #else
|
---|
22 | string readUntilEOL(FILE *f);
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | #endif
|
---|
Note: See
TracBrowser
for help on using the repository browser.