/* Copyright 2002 Trevor Bruen */
#include <stdlib.h>
#include <stdio.h>

/* Allocates space checking for safety */
void *safe_alloc(size_t );

/* Create new copy of string */
char *strClone(char *s2);

/* Open safely */
FILE *safe_open(char *name, char *mode);
