1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00
cc65/src/common/gentype.c
uz 6583320b79 Added GT_AsString().
git-svn-id: svn://svn.cc65.org/cc65/trunk@5255 b7a2c559-68d2-44c3-8de9-860c34a00d81
2011-08-21 20:04:27 +00:00

109 lines
4.2 KiB
C

/*****************************************************************************/
/* */
/* gentype.c */
/* */
/* Generic data type encoding */
/* */
/* */
/* */
/* (C) 2011, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
/* warranty. In no event will the authors be held liable for any damages */
/* arising from the use of this software. */
/* */
/* Permission is granted to anyone to use this software for any purpose, */
/* including commercial applications, and to alter it and redistribute it */
/* freely, subject to the following restrictions: */
/* */
/* 1. The origin of this software must not be misrepresented; you must not */
/* claim that you wrote the original software. If you use this software */
/* in a product, an acknowledgment in the product documentation would be */
/* appreciated but is not required. */
/* 2. Altered source versions must be plainly marked as such, and must not */
/* be misrepresented as being the original software. */
/* 3. This notice may not be removed or altered from any source */
/* distribution. */
/* */
/*****************************************************************************/
/* common */
#include "gentype.h"
#include "strbuf.h"
/*****************************************************************************/
/* Code */
/*****************************************************************************/
void GT_AddArray (StrBuf* Type, unsigned ArraySize)
/* Add an array with the given size to the type string in Type. This will
* NOT add the element type!
*/
{
unsigned I;
/* Add the array token */
SB_AppendChar (Type, GT_TYPE_ARRAY);
/* Add the size. */
for (I = 0; I < 4; ++I) {
SB_AppendChar (Type, ArraySize & 0xFF);
ArraySize >>= 8;
}
}
unsigned GT_GetArraySize (StrBuf* Type)
/* Retrieve the size of an array stored in Type at the current index position.
* The index position will get moved past the array size.
*/
{
unsigned Size;
Size = (unsigned)SB_Get (Type);
Size |= (unsigned)SB_Get (Type) << 8;
Size |= (unsigned)SB_Get (Type) << 16;
Size |= (unsigned)SB_Get (Type) << 24;
return Size;
}
void GT_AsString (const StrBuf* Type, StrBuf* String)
/* Convert the type into a readable representation */
{
static const char HexTab[16] = "0123456789ABCDEF";
unsigned I;
/* Convert Type into readable hex. String will have twice then length
* plus a terminator.
*/
SB_Realloc (String, 2 * SB_GetLen (Type) + 1);
SB_Clear (String);
for (I = 0; I < SB_GetLen (Type); ++I) {
unsigned char C = SB_AtUnchecked (Type, I);
SB_AppendChar (String, HexTab[(C & 0xF0) >> 4]);
SB_AppendChar (String, HexTab[(C & 0x0F) >> 0]);
}
/* Terminate the string so it can be used with string functions */
SB_Terminate (String);
}