Changeset c594489 in mainline for libc/include/string.h


Ignore:
Timestamp:
2006-05-31T18:54:25Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ad123964
Parents:
1c20e22
Message:

More things to make tetris helenos compatibile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/include/string.h

    r1c20e22 rc594489  
    4040int strcmp(const char *, const char *);
    4141
     42char *strcpy(char *dest, const char *src);
     43char *strncpy(char *dest, const char *src, size_t n);
     44
    4245size_t strlen(const char *str);
    4346
    44 int strcmp(const char *str1, const char *str2);
    4547char *strchr(const char *str, int c);
    4648char *strrchr(const char *str, int c);
Note: See TracChangeset for help on using the changeset viewer.