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


Ignore:
Timestamp:
2006-04-12T10:21:01Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f30e6a0b
Parents:
fcd10af
Message:

Printf support for width and precision modifiers.
Several necessary helping functions added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/include/string.h

    rfcd10af rc9857c6  
    3131#define __LIBC__STRING_H__
    3232
     33#include <types.h>
     34
    3335void * memset(void *s, int c, size_t n);
    3436void * memcpy(void *dest, void *src, size_t n);
    3537
     38size_t strlen(const char *str);
     39
    3640#endif
Note: See TracChangeset for help on using the changeset viewer.