- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
index(3) | Library Functions Manual | index(3) |
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¶
None.
HISTORIE¶
4.3BSD; marked as LEGACY in POSIX.1-2001. Removed in POSIX.1-2008, recommending strchr(3) and strrchr(3) instead.
DALŠÍ INFORMACE¶
PŘEKLAD¶
Překlad této příručky do češ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.
2. května 2024 | Linux man-pages 6.8 |