mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-13 00:36:02 +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 */
|