Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. char* strcpy(char* dst,const char* src)
  3. {
  4.         char* res= dst;
  5.         while(*dst++ = *src++) ;
  6.         return res;    
  7. }