Ruby  3.4.0dev (2024-11-05 revision ed06f018bdffe9bb7f8bdbf15fa5a727e402bfe9)
pm_memchr.h
Go to the documentation of this file.
1 
6 #ifndef PRISM_MEMCHR_H
7 #define PRISM_MEMCHR_H
8 
9 #include "prism/defines.h"
10 #include "prism/encoding.h"
11 
12 #include <stddef.h>
13 
27 void * pm_memchr(const void *source, int character, size_t number, bool encoding_changed, const pm_encoding_t *encoding);
28 
29 #endif
void * pm_memchr(const void *source, int character, size_t number, bool encoding_changed, const pm_encoding_t *encoding)
We need to roll our own memchr to handle cases where the encoding changes and we need to search for a...
Definition: pm_memchr.c:11
Macro definitions used throughout the prism library.
The encoding interface and implementations used by the parser.
This struct defines the functions necessary to implement the encoding interface so we can determine h...
Definition: encoding.h:23