logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

byte_rchr - search for a byte in a string

Description

byte_chr returns the largest integer i between 0 and len-1 inclusive such that one[i] equals needle.

       If no such integer exists, byte_chr returns len.

       byte_rchr  may  read all bytes one[0], one[1], ..., one[len-1], even if not all the bytes are relevant to
       the answer.

Name

       byte_rchr - search for a byte in a string

See Also

byte_chr(3)

                                                                                                    byte_rchr(3)

Syntax

#include<libowfat/byte.h>

       size_t byte_rchr(const char *haystack,size_t len,char needle);

See Also