| 113 | } |
| 114 | |
| 115 | cc_result Stream_OpenFile(struct Stream* s, const cc_string* path) { |
| 116 | cc_filepath str; |
| 117 | Platform_EncodePath(&str, path); |
| 118 | |
| 119 | return Stream_OpenPath(s, &str); |
| 120 | } |
| 121 | |
| 122 | cc_result Stream_CreateFile(struct Stream* s, const cc_string* path) { |
| 123 | cc_filepath str; |
nothing calls this directly
no test coverage detected