mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
e0eba8ce21
```bash find . -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.hpp" \) ! -path "src/3rdparty/*" -print0 | xargs -0 clang-format -i ```
22 lines
358 B
C
22 lines
358 B
C
#include "common/memrchr.h"
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
void* memrchr(const void* s, int c, size_t n) {
|
|
if (n == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
const uint8_t uc = (uint8_t) c;
|
|
|
|
const uint8_t* p = (const uint8_t*) s + n;
|
|
|
|
while (n--) {
|
|
if (*--p == uc) {
|
|
return (void*) p;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|