1 /*
2  * strtolower.h
3  * Ansilove 4.1.5
4  * https://www.ansilove.org
5  *
6  * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus
7  * All rights reserved.
8  *
9  * Ansilove is licensed under the BSD 2-Clause License.
10  * See LICENSE file for details.
11  */
12 
13 #ifndef STRTOLOWER_H
14 #define STRTOLOWER_H
15 
16 /* In-place modification of a string to be all lower case. */
17 
18 char	*strtolower(char *);
19 
20 #endif /* STRTOLOWER_H */
21