nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

cdbmake_pack.c (180B)


      1 #include "cdbmake.h"
      2 
      3 void cdbmake_pack(buf,num)
      4 unsigned char *buf;
      5 uint32 num;
      6 {
      7   *buf++ = num; num >>= 8;
      8   *buf++ = num; num >>= 8;
      9   *buf++ = num; num >>= 8;
     10   *buf = num;
     11 }