summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/strings.h
blob: a87f8ea03253327a29238c11db179220e77af2f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

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

__BEGIN_DECLS

int strcasecmp(char const*, char const*);
int strncasecmp(char const*, char const*, size_t);
void bzero(void*, size_t);
void bcopy(void const*, void*, size_t);
int ffs(int);
int ffsl(long int);
int ffsll(long long int);

__END_DECLS