File:  [DVB] / dietlibc / include / strings.h
Revision 1.5: download - view: text, annotated - select for diffs
Tue Aug 19 16:58:17 2003 UTC (20 years, 9 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
make headers C++ compatible

#ifndef _STRINGS_H
#define _STRINGS_H

#include <stddef.h>
#include <sys/cdefs.h>

__BEGIN_DECLS

int strcasecmp(const char *s1, const char *s2) __THROW __pure;
int strncasecmp(const char *s1, const char *s2, size_t n) __THROW __pure;
int ffs(int i) __THROW __attribute__((__const__));

int    bcmp(const void *, const void *, size_t) __THROW __pure __attribute_dontuse__;
void   bcopy(const void *, void *, size_t) __THROW __attribute_dontuse__;
void   bzero(void *, size_t) __THROW __attribute_dontuse__;
char  *index(const char *, int) __THROW __pure __attribute_dontuse__;
char  *rindex(const char *, int) __THROW __pure __attribute_dontuse__;

#define bzero(s,n) memset(s,0,n)
#define bcopy(src,dest,n) memmove(dest,src,n)
#define bcmp(a,b,n) memcmp(a,b,n)
#define index(a,b) strchr(a,b)
#define rindex(a,b) strrchr(a,b)

__END_DECLS

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>