mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "ge.h"
 | |
| 
 | |
| /*
 | |
| r = p
 | |
| */
 | |
| 
 | |
| extern void ge_p3_to_p2(ge_p2 *r,const ge_p3 *p)
 | |
| {
 | |
|   fe_copy(r->X,p->X);
 | |
|   fe_copy(r->Y,p->Y);
 | |
|   fe_copy(r->Z,p->Z);
 | |
| }
 | 
