예제 #1
0
int pdf_is_int(fz_context *ctx, pdf_obj *obj)
{
	RESOLVE(obj);
	return OBJ_IS_INT(obj);
}
예제 #2
0
void pdf_set_int_offset(fz_context *ctx, pdf_obj *obj, fz_off_t i)
{
	if (!OBJ_IS_INT(obj))
		return;
	NUM(obj)->u.i = i;
}
예제 #3
0
파일: pdf-object.c 프로젝트: muennich/mupdf
void pdf_set_int(fz_context *ctx, pdf_obj *obj, int64_t i)
{
	if (OBJ_IS_INT(obj))
		NUM(obj)->u.i = i;
}