aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Burago <igor@igorburago.com>2022-10-14 20:28:35 +0800
committerDan Cross <crossd@gmail.com>2023-03-31 08:16:11 -0400
commit4cd06ff66ca157d8450526963a004ebb5fd3cae0 (patch)
treef0b6f7bed4887dc5cc00b0971b1f76ddd31c5121
parent6eaa52d3f7d3835b5cf4c04c1994d6a8cc4ef610 (diff)
libregexp: allow up to 128 character classes in one regexp
-rw-r--r--include/regexp9.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/regexp9.h b/include/regexp9.h
index 20c0c3da..b93e7b8d 100644
--- a/include/regexp9.h
+++ b/include/regexp9.h
@@ -1,7 +1,7 @@
#ifndef _REGEXP9_H_
#define _REGEXP9_H_ 1
#if defined(__cplusplus)
-extern "C" {
+extern "C" {
#endif
#ifdef AUTOLIB
@@ -61,7 +61,7 @@ struct Reinst{
*/
struct Reprog{
Reinst *startinst; /* start pc */
- Reclass class[16]; /* .data */
+ Reclass class[128]; /* .data */
Reinst firstinst[5]; /* .text */
};