⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strlib.h

📁 一个使用anci c实现的ini处理程序
💻 H
字号:
/*-------------------------------------------------------------------------*//**  @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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -