OpenCores
URL https://opencores.org/ocsvn/plasma/plasma/trunk

Subversion Repositories plasma

[/] [plasma/] [trunk/] [kernel/] [rtos.h] - Diff between revs 138 and 144

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 138 Rev 144
Line 53... Line 53...
int strcmp(const char *string1, const char *string2);
int strcmp(const char *string1, const char *string2);
int strncmp(const char *string1, const char *string2, int count);
int strncmp(const char *string1, const char *string2, int count);
char *strstr(char *string, char *find);
char *strstr(char *string, char *find);
int strlen(const char *string);
int strlen(const char *string);
void *memcpy(void *dst, const void *src, unsigned long bytes);
void *memcpy(void *dst, const void *src, unsigned long bytes);
 
void *memmove(void *dst, const void *src, unsigned long bytes);
int memcmp(const void *cs, const void *ct, unsigned long bytes);
int memcmp(const void *cs, const void *ct, unsigned long bytes);
void *memset(void *dst, int c, unsigned long bytes);
void *memset(void *dst, int c, unsigned long bytes);
int abs(int n);
int abs(int n);
int rand(void);
unsigned int rand(void);
void srand(unsigned int seed);
void srand(unsigned int seed);
long strtol(const char *s, const char **end, int base);
long strtol(const char *s, const char **end, int base);
int atoi(const char *s);
int atoi(const char *s);
void itoa(char *dst, int num, int base, int width);
void itoa(char *dst, int num, int base, int width);
#ifndef NO_ELLIPSIS
#ifndef NO_ELLIPSIS

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.