ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/ihost/libukcprog/strsave.c
Revision: 1.1
Committed: Fri Mar 8 14:37:29 2002 UTC (22 years, 6 months ago) by tdb
Content type: text/plain
Branch: MAIN
CVS Tags: IHOST_1_5_3, IHOST_1_5_2, IHOST_1_5_1, IHOST_1_5, IHOST_1_0_RC1
Log Message:
I'm not usually up for putting third party sources in here, but in this
case I'll make an exception. This is ukcprog, a set of useful C functions
which the ihost plugins Pete's writing uses. It's got a pretty free license
too. I've munged the Makefile around, as all it needs to do now is make the
library, not install anything. The idea is to statically compile the other
programs against this library, making the final binary independent of this
code etc.

File Contents

# User Rev Content
1 tdb 1.1 /* strsave.c -- allocate memory and save a copy of a string */
2    
3     /* Copyright 1992 Godfrey Paul, University of Kent at Canterbury.
4     *
5     * You can do what you like with this source code as long as
6     * you don't try to make money out of it and you include an
7     * unaltered copy of this message (including the copyright).
8     */
9    
10     char ukcprog_strsave_sccsid[] = "$Id: strsave.c,v 1.7 1993/05/30 18:15:06 gjap Exp $ UKC";
11    
12     #include <string.h>
13     #include <stdlib.h> /* for malloc() */
14    
15     #include "ukcprog.h"
16    
17    
18     char *
19     strsave(s)
20     const char *s;
21     {
22     char *str;
23    
24     str = e_malloc(strlen(s) + 1);
25    
26     return strcpy(str, s);
27     }