Documentation from strfunc.h

ROV

Introduction

[top]

ROV - Easy applications from C

Copyright - © Jason Tribbeck / 7th ARM 1994-2001

Contributing authors - Jason Tribbeck

File - strfunc.h

Type - helper

Description

The strfunc helper provides string functionality

stricmp

[top]

Case insensitive form of strcmp()

Parameters:

 - char *str1 - the first string.
 - char *str2 - the second string.

Returns:

 -  negative if str1 < str2, zero if str1 = str2, or positive if str1 > str2.

int stricmp(char *str1,
	    char *str2);

strscpy

[top]

Like strcpy(), but stops at the first space or control code.

Parameters:

 - char *dst - the destination.
 - char *src - the source.

Returns:

 -  the location in the source where copying stopped.

char *strscpy(char *dst,
	      char *src);

Generated Thu Feb 7 23:22:52 2002