Example #1
0
faim_internal int aimbs_putle16(aim_bstream_t *bs, fu16_t v)
{

    if (aim_bstream_empty(bs) < 2)
        return 0; /* XXX throw an exception */

    bs->offset += aimutil_putle16(bs->data + bs->offset, v);

    return 2;
}
Example #2
0
int byte_stream_putle16(ByteStream *bs, guint16 v)
{

	if (byte_stream_empty(bs) < 2)
		return 0; /* XXX throw an exception */

	bs->offset += aimutil_putle16(bs->data + bs->offset, v);

	return 2;
}
Example #3
0
int aimbs_putle16(aim_bstream_t *bs, guint16 v)
{

	if (aim_bstream_empty(bs) < 2) {
		return 0; /* XXX throw an exception */

	}
	bs->offset += aimutil_putle16(bs->data + bs->offset, v);

	return 2;
}