Changeset e64c4b2 in mainline for uspace/lib/libc/include/string.h


Ignore:
Timestamp:
2008-12-23T19:45:57Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
404464a
Parents:
576845ec
Message:

Separate memxxx() functions into mem.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/include/string.h

    r576845ec re64c4b2  
    3636#define LIBC_STRING_H_
    3737
     38#include <mem.h>
    3839#include <sys/types.h>
    39 
    40 #define bzero(ptr, len)  memset((ptr), 0, (len))
    41 
    42 extern void * memset(void *, int, size_t);
    43 extern void * memcpy(void *, const void *, size_t);
    44 extern void * memmove(void *, const void *, size_t);
    45 
    46 extern int bcmp(const char *, const char *, size_t);
    4740
    4841extern int strcmp(const char *, const char *);
Note: See TracChangeset for help on using the changeset viewer.