| 1 | /* |
| 2 | * << Haru Free PDF Library >> -- hpdf_null.c |
| 3 | * |
| 4 | * URL: http://libharu.org |
| 5 | * |
| 6 | * Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp> |
| 7 | * Copyright (c) 2007-2009 Antony Dovgal <tony@daylessday.org> |
| 8 | * |
| 9 | * Permission to use, copy, modify, distribute and sell this software |
| 10 | * and its documentation for any purpose is hereby granted without fee, |
| 11 | * provided that the above copyright notice appear in all copies and |
| 12 | * that both that copyright notice and this permission notice appear |
| 13 | * in supporting documentation. |
| 14 | * It is provided "as is" without express or implied warranty. |
| 15 | * |
| 16 | */ |
| 17 | |
| 18 | #include "hpdf_utils.h" |
| 19 | #include "hpdf_objects.h" |
| 20 | |
| 21 | |
| 22 | HPDF_Null |
| 23 | HPDF_Null_New (HPDF_MMgr mmgr) |
| 24 | { |
| 25 | HPDF_Null obj = HPDF_GetMem (mmgr, sizeof(HPDF_Null_Rec)); |
| 26 | |
| 27 | if (obj) { |
| 28 | HPDF_MemSet (&obj->header, 0, sizeof(HPDF_Obj_Header)); |
| 29 | obj->header.obj_class = HPDF_OCLASS_NULL; |
| 30 | } |
| 31 | |
| 32 | return obj; |
| 33 | } |
| 34 | |
| 35 | |