| 127 | } |
| 128 | |
| 129 | cc_result Stream_OpenPath(struct Stream* s, const cc_filepath* path) { |
| 130 | cc_file file; |
| 131 | cc_result res = File_Open(&file, path); |
| 132 | |
| 133 | Stream_FromFile(s, file); |
| 134 | return res; |
| 135 | } |
| 136 | |
| 137 | cc_result Stream_CreatePath(struct Stream* s, const cc_filepath* path) { |
| 138 | cc_file file; |
no test coverage detected