7 lines
No EOL
152 B
C
7 lines
No EOL
152 B
C
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
int gethostname(char * name, size_t namelen) {
|
|
memcpy(name, "TEST_STR_REPLACE_LATER", namelen);
|
|
return 0;
|
|
} |