Like in libc
(RandomAccessFile f, int len)
| 231 | |
| 232 | /** Like in libc */ |
| 233 | public static String freadString(RandomAccessFile f, int len) { |
| 234 | byte buffer[] = new byte[len]; |
| 235 | FS.Read(buffer, len, f); |
| 236 | |
| 237 | return Lib.CtoJava(buffer); |
| 238 | } |
| 239 | |
| 240 | /** Returns the right part of the string from the last occruence of c. */ |
| 241 | public static String rightFrom(String in, char c) { |