Like in libc
(String name, String mode)
| 211 | |
| 212 | /** Like in libc */ |
| 213 | public static RandomAccessFile fopen(String name, String mode) { |
| 214 | try { |
| 215 | return new RandomAccessFile(name, mode); |
| 216 | } |
| 217 | catch (Exception e) { |
| 218 | Com.DPrintf("Could not open file:" + name); |
| 219 | return null; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /** Like in libc */ |
| 224 | public static void fclose(RandomAccessFile f) { |
no test coverage detected