mirror of
				https://github.com/N64Recomp/N64ModernRuntime.git
				synced 2025-10-30 08:02:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			168 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef __EUC_JP_H__
 | |
| #define __EUC_JP_H__
 | |
| 
 | |
| #include <string>
 | |
| #include <string_view>
 | |
| 
 | |
| namespace Encoding {
 | |
|     std::string decode_eucjp(std::string_view src);
 | |
| }
 | |
| 
 | |
| #endif
 | 
