diff options
author | Kevin Newton <[email protected]> | 2023-09-27 12:24:48 -0400 |
---|---|---|
committer | Kevin Newton <[email protected]> | 2023-09-27 13:57:38 -0400 |
commit | 4f73a7c2f7ff16aa78cf0dec2d4c7f90a2c41c9b (patch) | |
tree | 3b6f0cedc858d46d30a28c6d03439d653884a915 /prism/util/pm_memchr.h | |
parent | 8ab56869a64fdccc094f4a83c6367fb23b72d38b (diff) |
Sync to prism rename commits
Diffstat (limited to 'prism/util/pm_memchr.h')
-rw-r--r-- | prism/util/pm_memchr.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/prism/util/pm_memchr.h b/prism/util/pm_memchr.h index 97f4b15a83..fdc55a730b 100644 --- a/prism/util/pm_memchr.h +++ b/prism/util/pm_memchr.h @@ -1,14 +1,14 @@ -#ifndef YP_MEMCHR_H -#define YP_MEMCHR_H +#ifndef PRISM_MEMCHR_H +#define PRISM_MEMCHR_H -#include "yarp/defines.h" -#include "yarp/enc/yp_encoding.h" +#include "prism/defines.h" +#include "prism/enc/pm_encoding.h" #include <stddef.h> // We need to roll our own memchr to handle cases where the encoding changes and // we need to search for a character in a buffer that could be the trailing byte // of a multibyte character. -void * yp_memchr(const void *source, int character, size_t number, bool encoding_changed, yp_encoding_t *encoding); +void * pm_memchr(const void *source, int character, size_t number, bool encoding_changed, pm_encoding_t *encoding); #endif |