00001 #include "evpSupport.h"
00002
00003 int OLDEVP::checkBank(char *m, char *what)
00004 {
00005 int i;
00006 if (m[0]!=what[0]) return -1;
00007 for (i=1;what[i];i++) { if (m[i]!=what[i]) return -1;}
00008 if (i==8 || m[i]==' ') return 0;
00009 return -1 ;
00010 }