ansilove

ANSI and ASCII art to PNG converter in C
Log | Files | Refs | README | LICENSE

strtolower.h (467B)


      1 /*
      2  * strtolower.h
      3  * Ansilove 4.1.6
      4  * https://www.ansilove.org
      5  *
      6  * Copyright (c) 2011-2022 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  * SPDX-License-Identifier: BSD-2-Clause
     13  */
     14 
     15 #ifndef STRTOLOWER_H
     16 #define STRTOLOWER_H
     17 
     18 /* In-place modification of a string to be all lower case. */
     19 
     20 char	*strtolower(char *);
     21 
     22 #endif /* STRTOLOWER_H */