Converts a "list" of strings each null terminated into a List of String values. The end of the list is signaled by an extra NULL value at the end or by the end of the buffer. @param buf The buffer containing the strings @return A List of all the strings in the buffe
(char[] buf)
| 570 | * @see #toStringList(char[], int, int) |
| 571 | */ |
| 572 | public static List<String> toStringList(char[] buf) { |
| 573 | return toStringList(buf, 0, buf.length); |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * Converts a "list" of strings each null terminated |