21 lines
		
	
	
		
			435 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			435 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "taia.h"
 | |
| 
 | |
| void taia_unpack(char *s, struct taia *t)
 | |
| {
 | |
|   unsigned long x;
 | |
| 
 | |
|   tai_unpack(s,&t->sec);
 | |
|   s += 8;
 | |
| 
 | |
|   x = (unsigned char) s[4];
 | |
|   x <<= 8; x += (unsigned char) s[5];
 | |
|   x <<= 8; x += (unsigned char) s[6];
 | |
|   x <<= 8; x += (unsigned char) s[7];
 | |
|   t->atto = x;
 | |
|   x = (unsigned char) s[0];
 | |
|   x <<= 8; x += (unsigned char) s[1];
 | |
|   x <<= 8; x += (unsigned char) s[2];
 | |
|   x <<= 8; x += (unsigned char) s[3];
 | |
|   t->nano = x;
 | |
| }
 |