11 lines
178 B
C
11 lines
178 B
C
#ifndef _STRDUP_H
|
|
#define _STRDUP_H
|
|
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/* functions definitions */
|
|
char* strdup(const char* s);
|
|
|
|
#endif /* _STRDUP_H */
|