Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. char* strdup(char* str)
  2. {
  3.         char* res;
  4.         int len;
  5.         len=strlen(str)+1;
  6.         res=malloc(len);
  7.         memcpy(res,str,len);
  8.         return res;
  9. }
  10.