pdfio/pdfio-array.c

170 lines
1.6 KiB
C
Raw Normal View History

2021-04-17 02:41:46 +02:00
//
// 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)
{
}