2019-03-18 09:13:02 +01:00
|
|
|
/******************************************************************************
|
2019-03-04 23:05:46 +01:00
|
|
|
*
|
2019-03-18 09:13:02 +01:00
|
|
|
* Copyright (c) 2017-2019 by Löwenware Ltd
|
|
|
|
* Please, refer LICENSE file for legal information
|
2019-03-04 23:05:46 +01:00
|
|
|
*
|
2019-03-18 09:13:02 +01:00
|
|
|
******************************************************************************/
|
2019-03-04 23:05:46 +01:00
|
|
|
|
2019-03-18 09:13:02 +01:00
|
|
|
/**
|
|
|
|
* @file str-utils.h
|
|
|
|
* @author Ilja Kartašov <ik@lowenware.com>
|
|
|
|
* @brief String utilities header file
|
|
|
|
*
|
|
|
|
* @see https://lowenware.com/aisl/
|
|
|
|
*/
|
2019-03-04 23:05:46 +01:00
|
|
|
|
2019-03-18 09:13:02 +01:00
|
|
|
#ifndef STR_UTILS_H_799148B5_F829_437C_8B96_55876A37C38E
|
|
|
|
#define STR_UTILS_H_799148B5_F829_437C_8B96_55876A37C38E
|
2019-03-04 23:05:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
char *
|
2019-03-18 09:13:02 +01:00
|
|
|
str_copy(const char * source);
|
2019-03-04 23:05:46 +01:00
|
|
|
|
|
|
|
int
|
2019-03-18 09:13:02 +01:00
|
|
|
str_cmpi(const char * anycase, const char * lowcase);
|
2019-03-04 23:05:46 +01:00
|
|
|
|
2019-03-18 09:13:02 +01:00
|
|
|
#endif /* !STR_UTILS_H */
|