index(3) Library Functions Manual index(3)

index, rindex - vyhledej znak v řetězci

Standardní knihovna C (libc, -lc)

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

index() je identický s strchr(3).

rindex() je identický s strrchr(3).

Use strchr(3) and strrchr(3) instead of these functions.

None.

4.3BSD; marked as LEGACY in POSIX.1-2001. Removed in POSIX.1-2008, recommending strchr(3) and strrchr(3) instead.

strchr(3), strrchr(3)

Překlad této příručky do španělštiny vytvořili Pavel Heimlich <tropikhajma@gmail.com>

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 translation-team-cs@lists.sourceforge.net.

30. března 2023 Linux man-pages 6.05.01