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.
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.
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.
5. ledna 2023 | Linux man-pages 6.03 |