Fukurō
A highly portable microkernel
Loading...
Searching...
No Matches
string.h
Go to the documentation of this file.
1/*
2 * Copyright © 2023, d0p1
3 *
4 * This file is part of Fukurō.
5 *
6 * This software is governed by the CeCILL license under French law and
7 * abiding by the rules of distribution of free software. You can use,
8 * modify and/ or redistribute the software under the terms of the CeCILL
9 * license as circulated by CEA, CNRS and INRIA at the following URL
10 * "http://cecill.info".
11 *
12 * As a counterpart to the access to the source code and rights to copy,
13 * modify and redistribute granted by the license, users are provided only
14 * with a limited warranty and the software's author, the holder of the
15 * economic rights, and the successive licensors have only limited
16 * liability.
17 *
18 * In this respect, the user's attention is drawn to the risks associated
19 * with loading, using, modifying and/or developing or reproducing the
20 * software by the user in light of its specific status of free software,
21 * that may mean that it is complicated to manipulate, and that also
22 * therefore means that it is reserved for developers and experienced
23 * professionals having in-depth computer knowledge. Users are therefore
24 * encouraged to load and test the software's suitability as regards their
25 * requirements in conditions enabling the security of their systems and/or
26 * data to be ensured and, more generally, to use and operate it in the
27 * same conditions as regards security.
28 *
29 * The fact that you are presently reading this means that you have had
30 * knowledge of the CeCILL license and that you accept its terms.
31 */
32
33#ifndef FUKURO_MINILIBC_H
34# define FUKURO_MINILIBC_H 1
35
36# include <stddef.h>
37
38void *memset(void *dest, int c, size_t count);
39size_t strlen(const char *str);
40
41#endif /* !FUKURO_MINILIBC_H */
size_t strlen(const char *str)
void * memset(void *dest, int c, size_t count)