mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 22:42:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:generate make
 | |
| package base64x
 | |
| 
 | |
| import (
 | |
|     `unsafe`
 | |
| )
 | |
| 
 | |
| //go:nosplit
 | |
| //go:noescape
 | |
| //goland:noinspection GoUnusedParameter
 | |
| func __b64encode(out *[]byte, src *[]byte, mode int)
 | |
| 
 | |
| //go:nosplit
 | |
| //go:noescape
 | |
| //goland:noinspection GoUnusedParameter
 | |
| func __b64decode(out *[]byte, src unsafe.Pointer, len int, mode int) (ret int)
 |