File: IDNA.java

package info (click to toggle)
libidn 1.43-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,376 kB
  • sloc: java: 14,167; ansic: 7,085; cs: 1,974; sh: 1,283; perl: 1,238; makefile: 680; lisp: 231; php: 214; xml: 88; python: 9
file content (7 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
class IDNA {
    public native String toAscii(String str);

    static {
        System.loadLibrary("idn-java");
    }
}