Like in libc
(RandomAccessFile f)
| 222 | |
| 223 | /** Like in libc */ |
| 224 | public static void fclose(RandomAccessFile f) { |
| 225 | try { |
| 226 | f.close(); |
| 227 | } |
| 228 | catch (Exception e) { |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | /** Like in libc */ |
| 233 | public static String freadString(RandomAccessFile f, int len) { |
no outgoing calls
no test coverage detected