1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Mw_parse: Add more support for original files

This commit is contained in:
gnosygnu
2017-02-07 20:57:57 -05:00
parent e4e899f72a
commit ffc112a085
11 changed files with 278 additions and 239 deletions

View File

@@ -20,6 +20,7 @@ public class Php_utl_ {
public static boolean Empty(byte[] v) {return v == null || v.length == 0;}
public static boolean Empty(boolean v) {return v == false;}
public static boolean Is_set(byte[] v) {return v != null;}
public static boolean isset(int v) {return v != Int_.Max_value;}
public static boolean isnumeric(byte[] src) {
if (src == null) return false;
int len = src.length;