view pads2gpcb/util.c @ 150:bcf011f6d7a5

KWH020ST23-F01.fp created
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 22 Jun 2021 22:20:53 +0000
parents 455a0051f9d2
children
line wrap: on
line source

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>

char *
savestr(srcstr)
	char *srcstr;
{
	char *buf;

	buf = malloc(strlen(srcstr) + 1);
	if (!buf) {
		perror("malloc in savestr");
		exit(1);
	}
	strcpy(buf, srcstr);
	return(buf);
}