-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmylib.h
More file actions
22 lines (17 loc) · 758 Bytes
/
mylib.h
File metadata and controls
22 lines (17 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/****************************************************************************
* @file mylib.h
* @author Connor Dobson Student_ID: 1043665
* @author Hayden Knox Student_ID: 2485875
*
* The purpose of this program is to hold definitions of memory allocation
* functions and a input string reader function getword()to be used within
* the file htable.c. These functions and thier associated variables need
* to be imported into the C program using the #include statement.
***************************************************************************/
#ifndef MYLIB_H_
#define MYLIB_H_
#include <stddef.h>
extern void *emalloc(size_t);
extern void *erealloc(void *, size_t);
extern int getword(char *s, int limit, FILE *stream);
#endif