make/test_memrchr.c

Sun, 12 Oct 2025 20:21:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 12 Oct 2025 20:21:56 +0200
changeset 1424
563033aa998c
parent 1413
c5a225d7228c
permissions
-rw-r--r--

fixes tons of typos and grammar issues across the documentation - fixes #667

#include <string.h>

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

mercurial