make/test_memrchr.c

Fri, 10 Oct 2025 19:35:25 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 10 Oct 2025 19:35:25 +0200
changeset 1420
c6f55a2b3495
parent 1413
c5a225d7228c
permissions
-rw-r--r--

fix various typos in the web documentation

#include <string.h>

int main() {
    const char *r = memrchr("tester", 'e', 6);
    return !(r != NULL);
}

mercurial