summaryrefslogtreecommitdiff
path: root/lib/ZReadAscii.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1988-08-01 08:09:44 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1988-08-01 08:09:44 +0000
commitf24fea8aed6fb10665d3b4d006e46588fcd0360c (patch)
tree1a4ea157b1863ce06b1604ca580b473682e1adeb /lib/ZReadAscii.c
parent40989e32890b3500724ec1f6486fff9de9b62947 (diff)
change to use reserved function names
Diffstat (limited to 'lib/ZReadAscii.c')
-rw-r--r--lib/ZReadAscii.c6
1 files changed, 3 insertions, 3 deletions
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';