s_srch2.c

来自「大方科技莱卡的减肥了但十分大方的发生地方」· C语言 代码 · 共 35 行

C
35
字号
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.  This
** version destroys the pointers so it can only be used when
** the collection will be examined only once.
*/

#include <stdio.h>
#include <assert.h>

#define	TRUE	1
#define	FALSE	0

int
find_char( char **strings, int value )
{
	assert( strings != NULL );

	/*
	** For each string in the list ...
	*/
	while( *strings != NULL ){
		/*
		** Look at each character in the string to see if
		** it is the one we want.
		*/
		while( **strings != '\0' ){
			if( *(*strings)++ == value )
				return TRUE;
		}
		strings++;
	}
	return FALSE;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?