The Open Group Base Specifications Issue 6
IEEE Std 1003.1, 2004 Edition
Copyright © 2001-2004 The IEEE and The Open Group, All Rights reserved.
A newer edition of this document exists here

NAME

rindex - character string operations (LEGACY)

SYNOPSIS

[XSI] [Option Start] #include <strings.h>

char *rindex(const char *
s, int c); [Option End]

DESCRIPTION

The rindex() function shall be equivalent to strrchr().

RETURN VALUE

Refer to strrchr().

ERRORS

Refer to strrchr().


The following sections are informative.

EXAMPLES

None.

APPLICATION USAGE

The strrchr() function is preferred over this function.

For maximum portability, it is recommended to replace the function call to rindex() as follows:

#define rindex(a,b) strrchr((a),(b))

RATIONALE

None.

FUTURE DIRECTIONS

This function may be withdrawn in a future version.

SEE ALSO

strrchr(), the Base Definitions volume of IEEE Std 1003.1-2001, <strings.h>

CHANGE HISTORY

First released in Issue 4, Version 2.

Issue 5

Moved from X/OPEN UNIX extension to BASE.

Issue 6

This function is marked LEGACY.

End of informative text.

UNIX ® is a registered Trademark of The Open Group.
POSIX ® is a registered Trademark of The IEEE.
[ Main Index | XBD | XCU | XSH | XRAT ]