MCPcopy Create free account
hub / github.com/java-native-access/jna / toStringList

Method toStringList

src/com/sun/jna/Native.java:572–574  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 &quot;list&quot; of strings each null terminated

Callers 4

queryDosDeviceMethod · 0.95
testToStringListMethod · 0.95

Calls 1

addMethod · 0.45

Tested by 1

testToStringListMethod · 0.76