--- psiconv/trunk/lib/psiconv/parse_simple.c 2000/12/25 14:34:17 78 +++ psiconv/trunk/lib/psiconv/parse_simple.c 2000/12/25 22:25:33 79 @@ -29,7 +29,7 @@ int *status) { psiconv_u8 *ptr; - ptr = psiconv_list_get(buf,off); + ptr = psiconv_buffer_get(buf,off); if (!ptr) { psiconv_warn(lev,off,"Trying byte read past the end of the file"); if (status) @@ -45,8 +45,8 @@ int *status) { psiconv_u8 *ptr0,*ptr1; - ptr0 = psiconv_list_get(buf,off); - ptr1 = psiconv_list_get(buf,off+1); + ptr0 = psiconv_buffer_get(buf,off); + ptr1 = psiconv_buffer_get(buf,off+1); if (!ptr0 || !ptr1) { psiconv_warn(lev,off,"Trying word read past the end of the file"); if (status) @@ -62,10 +62,10 @@ int *status) { psiconv_u8 *ptr0,*ptr1,*ptr2,*ptr3; - ptr0 = psiconv_list_get(buf,off); - ptr1 = psiconv_list_get(buf,off+1); - ptr2 = psiconv_list_get(buf,off+2); - ptr3 = psiconv_list_get(buf,off+3); + ptr0 = psiconv_buffer_get(buf,off); + ptr1 = psiconv_buffer_get(buf,off+1); + ptr2 = psiconv_buffer_get(buf,off+2); + ptr3 = psiconv_buffer_get(buf,off+3); if (!ptr0 || !ptr1 || !ptr2 || !ptr3) { psiconv_warn(lev,off,"Trying long read past the end of the file"); if (status)