| 135 | } |
| 136 | |
| 137 | cc_result Stream_CreatePath(struct Stream* s, const cc_filepath* path) { |
| 138 | cc_file file; |
| 139 | cc_result res = File_Create(&file, path); |
| 140 | |
| 141 | Stream_FromFile(s, file); |
| 142 | return res; |
| 143 | } |
| 144 | |
| 145 | cc_result Stream_AppendPath(struct Stream* s, const cc_filepath* path) { |
| 146 | cc_file file; |
no test coverage detected