mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-08 13:42:31 +05:30
12 lines
178 B
C
12 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 */
|