mylib.h
contents ::
  app.c
  bst.c
  bst.h
  mylib.c
  mylib.h

#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