strlib.h
来自「一个使用anci c实现的ini处理程序」· C头文件 代码 · 共 109 行
H
109 行
/*-------------------------------------------------------------------------*//** @file strlib.h @author N. Devillard @date Jan 2001 @version $Revision: 1.3 $ @brief Various string handling routines to complement the C lib. This modules adds a few complementary string routines usually missing in the standard C library.*//*--------------------------------------------------------------------------*//* $Id: strlib.h,v 1.3 2001/10/19 08:31:41 ndevilla Exp $ $Author: ndevilla $ $Date: 2001/10/19 08:31:41 $ $Revision: 1.3 $*/#ifndef _STRLIB_H_#define _STRLIB_H_/*--------------------------------------------------------------------------- Includes ---------------------------------------------------------------------------*/#include <stdio.h>#include <stdlib.h>/*--------------------------------------------------------------------------- Function codes ---------------------------------------------------------------------------*//*-------------------------------------------------------------------------*//** @brief Convert a string to lowercase. @param s String to convert. @return ptr to statically allocated string. This function returns a pointer to a statically allocated string containing a lowercased version of the input string. Do not free or modify the returned string! Since the returned string is statically allocated, it will be modified at each function call (not re-entrant). *//*--------------------------------------------------------------------------*/char * strlwc(char * s);/*-------------------------------------------------------------------------*//** @brief Convert a string to uppercase. @param s String to convert. @return ptr to statically allocated string. This function returns a pointer to a statically allocated string containing an uppercased version of the input string. Do not free or modify the returned string! Since the returned string is statically allocated, it will be modified at each function call (not re-entrant). *//*--------------------------------------------------------------------------*/char * strupc(char * s);/*-------------------------------------------------------------------------*//** @brief Skip blanks until the first non-blank character. @param s String to parse. @return Pointer to char inside given string. This function returns a pointer to the first non-blank character in the given string. *//*--------------------------------------------------------------------------*/char * strskp(char * s);/*-------------------------------------------------------------------------*//** @brief Remove blanks at the end of a string. @param s String to parse. @return ptr to statically allocated string. This function returns a pointer to a statically allocated string, which is identical to the input string, except that all blank characters at the end of the string have been removed. Do not free or modify the returned string! Since the returned string is statically allocated, it will be modified at each function call (not re-entrant). *//*--------------------------------------------------------------------------*/char * strcrop(char * s);/*-------------------------------------------------------------------------*//** @brief Remove blanks at the beginning and the end of a string. @param s String to parse. @return ptr to statically allocated string. This function returns a pointer to a statically allocated string, which is identical to the input string, except that all blank characters at the end and the beg. of the string have been removed. Do not free or modify the returned string! Since the returned string is statically allocated, it will be modified at each function call (not re-entrant). *//*--------------------------------------------------------------------------*/char * strstrip(char * s) ;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?