Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!ukma!nrl-cmf!cmcl2!brl-adm!adm!PEPRBV%CFAAMP.BITNET@wiscvm.wisc.EDU From: PEPRBV%CFAAMP.BITNET@wiscvm.wisc.EDU (Bob Babcock) Newsgroups: comp.lang.c Subject: Re: ltoa Message-ID: <10594@brl-adm.ARPA> Date: Tue, 1-Dec-87 01:12:45 EST Article-I.D.: brl-adm.10594 Posted: Tue Dec 1 01:12:45 1987 Date-Received: Fri, 4-Dec-87 00:07:27 EST Sender: news@brl-adm.ARPA Lines: 9 bagpiper@oxy.uucp asks >Could anybody tell me what the ltoa function is suppose to do. I think that >it was in the library for the CI86 compiler. I would also like to know >about the rindex function [index is the same as strchr...then what is rindex?]. In CI86, ltoa(n,buffer) converts long integer n to an ascii string in buffer (which should be at least 12 characters long). rindex(string,cc) is the same as strrchr, finds last occurrence of character cc in string.