prof_int32
required = 3*sizeof(prof_int32);
required += sizeof(prof_int32);
static void pack_int32(prof_int32 oval, unsigned char **bufpp, size_t *remainp)
*bufpp += sizeof(prof_int32);
*remainp -= sizeof(prof_int32);
prof_int32 fcount, slen;
slen = (prof_int32) strlen(pfp->data->filespec);
static int unpack_int32(prof_int32 *intp, unsigned char **bufpp,
if (*remainp >= sizeof(prof_int32)) {
*intp = (((prof_int32) (*bufpp)[0] << 24) |
((prof_int32) (*bufpp)[1] << 16) |
((prof_int32) (*bufpp)[2] << 8) |
((prof_int32) (*bufpp)[3]));
*bufpp += sizeof(prof_int32);
*remainp -= sizeof(prof_int32);
prof_int32 fcount, tmp;