JMÉNO

index, rindex - vyhledej znak v řetězci

KNIHOVNA

Standardní knihovna C ( libc, -lc)

POUŽITÍ

#include <strings.h>
[[zastaralé]] char *index(const char *s, int c);
[[zastaralé]] char *rindex(const char *s, int c);

POPIS

index() je identický s strchr(3).
rindex() je identický s strrchr(3).
Use strchr(3) and strrchr(3) instead of these functions.

STANDARDY

4.3BSD; marked as LEGACY in POSIX.1-2001. POSIX.1-2008 removes the specifications of index() and rindex(), recommending strchr(3) and strrchr(3) instead.

DALŠÍ INFORMACE

strchr(3), strrchr(3)

PŘEKLAD

Překlad této příručky do španělštiny vytvořili Pavel Heimlich <[email protected]>
Tento překlad je bezplatná dokumentace; Přečtěte si GNU General Public License Version 3 nebo novější ohledně podmínek autorských práv. Neexistuje ŽÁDNÁ ODPOVĚDNOST.
Pokud narazíte na nějaké chyby v překladu této příručky, pošlete e-mail na adresu [email protected]

Recommended readings

Pages related to rindex you should read also: