| src/pdfmake.c | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 2 | 2 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 2 | 2 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | /* | ||||||
| 2 | * libpdfmake — core implementation. | ||||||
| 3 | * | ||||||
| 4 | * Phase 01 only contains the version stub. Real work lands in phase 02+. | ||||||
| 5 | */ | ||||||
| 6 | |||||||
| 7 | #include "pdfmake.h" | ||||||
| 8 | |||||||
| 9 | 3 | const char *pdfmake_version(void) | |||||
| 10 | { | ||||||
| 11 | 3 | return PDFMAKE_VERSION; | |||||
| 12 | } | ||||||
| 13 | |||||||
| 14 | /* phase 02: arena implementation goes here */ | ||||||
| 15 | /* phase 02: primitive constructors (pdfmake_null, pdfmake_int, ...) go here */ |