aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/strings.h
blob: 4957c41ff71d9359276318aff5ca978e6fa7496c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _POSIX_STRINGS_H
#define _POSIX_STRINGS_H

#include <string.h>

#define bzero(ptr, size) (memset((ptr), '\0', (size)), (void) 0)

int ffs (int i);
int ffsl (long int li);
int ffsll (long long int lli);

#endif /* _POSIX_STRINGS_H */