From f24fea8aed6fb10665d3b4d006e46588fcd0360c Mon Sep 17 00:00:00 2001 From: John Kohl Date: Mon, 1 Aug 1988 08:09:44 +0000 Subject: change to use reserved function names --- lib/ZReadAscii.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/ZReadAscii.c') diff --git a/lib/ZReadAscii.c b/lib/ZReadAscii.c index b5ead0e..74b3e1a 100644 --- a/lib/ZReadAscii.c +++ b/lib/ZReadAscii.c @@ -42,8 +42,8 @@ int ZReadAscii(ptr, len, field, num) if (len < 0) return (ZERR_BADFIELD); } - c1 = cnvt_xtoi(ptr[0]); - c2 = cnvt_xtoi(ptr[1]); + c1 = Z_cnvt_xtoi(ptr[0]); + c2 = Z_cnvt_xtoi(ptr[1]); if (c1 < 0 || c2 < 0) return(ZERR_BADFIELD); hexbyte = (c1 << 4) | c2; @@ -60,7 +60,7 @@ int ZReadAscii(ptr, len, field, num) return (ZERR_NONE); } -cnvt_xtoi(c) +Z_cnvt_xtoi(c) char c; { c -= '0'; -- cgit v1.2.3