| 120 | } |
| 121 | |
| 122 | cc_result Stream_CreateFile(struct Stream* s, const cc_string* path) { |
| 123 | cc_filepath str; |
| 124 | Platform_EncodePath(&str, path); |
| 125 | |
| 126 | return Stream_CreatePath(s, &str); |
| 127 | } |
| 128 | |
| 129 | cc_result Stream_OpenPath(struct Stream* s, const cc_filepath* path) { |
| 130 | cc_file file; |
nothing calls this directly
no test coverage detected