String structure containing its value and size which maps to the string byte format used in data files.String: Short – length – 10 Byte value – first character of string – '5'
/* *********************************************************************
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
*
* This Original Work is licensed under the European Union Public Licence
* (EUPL) v.1.2 and is subject to its terms as set out below.
*
* If a copy of the EUPL was not distributed with this file, You can obtain
* one at https://opensource.org/licenses/EUPL-1.2.
*
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
* amended by the European Commission) shall be deemed incompatible for
* the purposes of the Work and the provisions of the compatibility
* clause in Article 5 of the EUPL shall not apply.
*
* If using the Work as, or as part of, a network application, by
* including the attribution notice(s) required under Article 5 of the EUPL
* in the end user terms of the application under an appropriate heading,
* such notice(s) shall fulfill the requirements of that article.
* ********************************************************************* */
#ifndef FIFTYONE_DEGREES_STRING_H_INCLUDED
#define FIFTYONE_DEGREES_STRING_H_INCLUDED
#include <stdint.h>
#include <ctype.h>
#include "exceptions.h"
#include "collection.h"
#include "float.h"
#include "common.h"
#include "ip.h"
#include "propertyValueType.h"
#define FIFTYONE_DEGREES_STRING(s) \
(const char*)(s == NULL ? NULL : &((fiftyoneDegreesString*)s)->value)
#pragma pack(push, 1)
typedef struct fiftyone_degrees_string_t {
int16_t size;
char value;
#pragma pack(pop)
#ifndef FIFTYONE_DEGREES_MEMORY_ONLY
EXTERNAL uint32_t fiftyoneDegreesStringGetFinalSize(
const void *initial,
fiftyoneDegreesException *exception);
#else
#define fiftyoneDegreesStringGetFinalSize NULL
#endif
#ifndef FIFTYONE_DEGREES_MEMORY_ONLY
fiftyoneDegreesData *data,
fiftyoneDegreesException *exception);
#endif
uint32_t offset,
fiftyoneDegreesException *exception);
char const *a,
char const *b,
size_t length);
#include "stringBuilder.h"
#endif
