Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!princeton!caip!seismo!brl-adm!brl-smoke!drears@ardec.arpa From: drears@ardec.arpa (FSAC) Newsgroups: net.lang.c Subject: Re: Header file strings.h Message-ID: <1434@brl-smoke.ARPA> Date: Tue, 17-Jun-86 16:24:30 EDT Article-I.D.: brl-smok.1434 Posted: Tue Jun 17 16:24:30 1986 Date-Received: Sat, 21-Jun-86 09:14:58 EDT Sender: news@brl-smoke.ARPA Lines: 20 Paul Schauble writes: >I am trying to port a program from Unix to MS-DOS. It makes use of a >header file . This is not supplied with Microsoft C. Could >someone please enlighten me as to what this contains? contains the data types for the string operations - strcat, strncat, strtok, strcpy, etc. I have used the strings functions many times without using this header file. If you are checking the return codes of the functions explicitly define the functions. Example: char *strcat(), *strcmp(); int strlen; I believe Microsoft C libraries contains the string functions. In that case just explicitly define the functions. If they don't you might have to write the string functions yourself. Dennis