Fill out basic API functions.

This commit is contained in:
Michael R Sweet
2021-04-16 20:41:46 -04:00
parent 4a33f3f6f1
commit c2610f2dd0
9 changed files with 573 additions and 4 deletions

169
pdfio-array.c Normal file
View File

@@ -0,0 +1,169 @@
//
// PDF array functions for pdfio.
//
// Copyright © 2021 by Michael R Sweet.
//
// Licensed under Apache License v2.0. See the file "LICENSE" for more
// information.
//
//
// Include necessary headers...
//
#include "pdfio-private.h"
//
// '()' - .
//
bool pdfioArrayAppendArray(pdfio_array_t *a, pdfio_array_t *value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendBoolean(pdfio_array_t *a, boolean value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendDict(pdfio_array_t *a, pdfio_dict_t *value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendName(pdfio_array_t *a, const char *value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendNumber(pdfio_array_t *a, float value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendObject(pdfio_array_t *a, pdfio_obj_t *value)
{
}
//
// '()' - .
//
bool pdfioArrayAppendString(pdfio_array_t *a, const char *value)
{
}
//
// '()' - .
//
pdfio_array_t *pdfioArrayCreate(pdfio_file_t *file)
{
}
//
// '()' - .
//
pdfio_array_t *pdfioArrayGetArray(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
bool pdfioArrayGetBoolean(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
pdfio_dict_t *pdfioArrayGetDict(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
const char *pdfioArrayGetName(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
float pdfioArrayGetNumber(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
pdfio_obj_t *pdfioArrayGetObject(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
int pdfioArrayGetSize(pdfio_array_t *a)
{
}
//
// '()' - .
//
const char *pdfioArrayGetString(pdfio_array_t *a, int n)
{
}
//
// '()' - .
//
pdfio_valtype_t pdfioArrayGetType(pdfio_array_t *a, int n)
{
}