Update of /cvsroot/jake2/jake2/src/jake2/util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11303/src/jake2/util
Modified Files:
Lib.java
Log Message:
replace Lib functions
Index: Lib.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/util/Lib.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Lib.java 12 Jul 2004 20:47:01 -0000 1.4
--- Lib.java 23 Jul 2004 10:09:55 -0000 1.5
***************
*** 76,83 ****
}
- public static int stricmp(String in1, String in2) {
- return in1.compareToIgnoreCase(in2);
- }
-
public static boolean strstr(String i1, String i2) {
return (i1.indexOf(i2) != -1);
--- 76,79 ----
***************
*** 124,131 ****
}
- // public static int strlen(String in) {
- // return in.length();
- // }
-
public static int strlen(char in[]) {
for (int i = 0; i < in.length; i++)
--- 120,123 ----
***************
*** 142,160 ****
}
- public static void strcat(String in, String i) {
- in += i;
- }
-
- public static void strcpy(byte dest[], byte src[]) {
- for (int i = 0; i < dest.length && i < src.length; i++)
- if (src[i] == 0) {
- dest[i] = 0;
- return;
- }
- else
- dest[i] = src[i];
-
- }
-
static byte[] buffer = new byte[Defines.MAX_INFO_STRING];
public static String readString(ByteBuffer bb, int len) {
--- 134,137 ----
***************
*** 243,254 ****
}
- public static String cut(String in, char c) {
- int pos = in.indexOf(c);
-
- if (pos != -1)
- return in.substring(0, pos);
- return in;
- }
-
public static RandomAccessFile fopen(String name, String mode) {
try {
--- 220,223 ----
|