mirror of
https://github.com/go-gitea/gitea
synced 2025-07-06 10:37:20 +00:00
Migrate to go-enry new version (#10906)
This commit is contained in:
14
vendor/github.com/go-enry/go-oniguruma/chelper.h
generated
vendored
Normal file
14
vendor/github.com/go-enry/go-oniguruma/chelper.h
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
#include <oniguruma.h>
|
||||
|
||||
extern int NewOnigRegex( char *pattern, int pattern_length, int option,
|
||||
OnigRegex *regex, OnigRegion **region, OnigEncoding *encoding, OnigErrorInfo **error_info, char **error_buffer);
|
||||
|
||||
extern int SearchOnigRegex( void *str, int str_length, int offset, int option,
|
||||
OnigRegex regex, OnigRegion *region, OnigErrorInfo *error_info, char *error_buffer, int *captures, int *numCaptures);
|
||||
|
||||
extern int MatchOnigRegex( void *str, int str_length, int offset, int option,
|
||||
OnigRegex regex, OnigRegion *region);
|
||||
|
||||
extern int LookupOnigCaptureByName(char *name, int name_length, OnigRegex regex, OnigRegion *region);
|
||||
|
||||
extern int GetCaptureNames(OnigRegex regex, void *buffer, int bufferSize, int* groupNumbers);
|
Reference in New Issue
Block a user