Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6411 → Rev 6412

/programs/develop/ktcc/trunk/libc/string/strdup.c
1,4 → 1,7
char* strdup(char* str)
#include <stdlib.h>
#include <string.h>
 
char* strdup(const char* str)
{
char* res;
int len;