The whole of last week, plus this week, i have been just doing co-ordination between various people in the organization. I have just been doing the talking .......no coding!!....all that i wrote in the last few days are.... char *getlogin(void) {
return getenv("LOGNAME"); } static void to_little_endian(uint32 *dst, uint8 *src, int len) {
while(len--) {
*dst = (((uint32) src[3]) << 24) |
(((uint32) src[2]) << 16) |
(((uint32) src[1]) << 8) |
(((uint32)src[0];
src+= 4;
dst++;
}
}
have to get back to serious work soon......
Code....
About this entry
Youre currently reading Code.....
- Published:
- at 1:33 PM on Friday, January 19, 2007
- Previous:
- Older Post
- Next:
- Newer Post
0 comments: