mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			222 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			222 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #define	NULL		((char*) 0)
 | |
| char *scan(char *p){
 | |
| char *q;
 | |
| #define	YYCTYPE		char
 | |
| #define	YYCURSOR	p
 | |
| #define	YYLIMIT		p
 | |
| #define	YYMARKER	q
 | |
| #define	YYFILL(n)
 | |
| /*!re2c
 | |
| 	[0-9]+		{return YYCURSOR;}
 | |
| 	[\000-\377]	{return NULL;}
 | |
| */
 | |
| }
 |