summaryrefslogtreecommitdiff
path: root/prism/regexp.h
diff options
context:
space:
mode:
authorKevin Newton <[email protected]>2023-09-27 12:24:48 -0400
committerKevin Newton <[email protected]>2023-09-27 13:57:38 -0400
commit4f73a7c2f7ff16aa78cf0dec2d4c7f90a2c41c9b (patch)
tree3b6f0cedc858d46d30a28c6d03439d653884a915 /prism/regexp.h
parent8ab56869a64fdccc094f4a83c6367fb23b72d38b (diff)
Sync to prism rename commits
Diffstat (limited to 'prism/regexp.h')
-rw-r--r--prism/regexp.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/prism/regexp.h b/prism/regexp.h
index 6807c58398..5745512dee 100644
--- a/prism/regexp.h
+++ b/prism/regexp.h
@@ -1,12 +1,12 @@
-#ifndef YARP_REGEXP_H
-#define YARP_REGEXP_H
+#ifndef PRISM_REGEXP_H
+#define PRISM_REGEXP_H
-#include "yarp/defines.h"
-#include "yarp/parser.h"
-#include "yarp/enc/yp_encoding.h"
-#include "yarp/util/yp_memchr.h"
-#include "yarp/util/yp_string_list.h"
-#include "yarp/util/yp_string.h"
+#include "prism/defines.h"
+#include "prism/parser.h"
+#include "prism/enc/pm_encoding.h"
+#include "prism/util/pm_memchr.h"
+#include "prism/util/pm_string_list.h"
+#include "prism/util/pm_string.h"
#include <stdbool.h>
#include <stddef.h>
@@ -14,6 +14,6 @@
// Parse a regular expression and extract the names of all of the named capture
// groups.
-YP_EXPORTED_FUNCTION bool yp_regexp_named_capture_group_names(const uint8_t *source, size_t size, yp_string_list_t *named_captures, bool encoding_changed, yp_encoding_t *encoding);
+PRISM_EXPORTED_FUNCTION bool pm_regexp_named_capture_group_names(const uint8_t *source, size_t size, pm_string_list_t *named_captures, bool encoding_changed, pm_encoding_t *encoding);
#endif