mylib.h
contents ::
  asgn3.c
  tree.c
  tree.h
  mylib.c
  mylib.h

/***************************************************************************
 *                                                                         *
 *     Tree Program in C                                                   *
 *                                                                         *
 *     COSC 242 Assignment 20/09/01                                        *
 *                                                                         *
 *     JAMES LITTLE                                                        *
 *                                                                         *
 ***************************************************************************/

#ifndef MYLIB_H
#define MYLIB_H

#include <stdio.h>

extern void *emalloc(size_t s);
extern void *erealloc(void *p, size_t s);
extern int getword(char *s, int limit, FILE *stream);
extern int stoi(char *s);
extern int my_strlen(char *s);
extern unsigned int relative_prime(int s);
#endif

James Little