mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:35:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			808 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			808 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #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);
 |