#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <libasmP.h>
int
asm_addstrz (AsmScn_t *asmscn, const char *str, size_t len)
{
if (asmscn == NULL)
return -1;
if (unlikely (asmscn->type == SHT_NOBITS))
{
if (len == 0)
{
if (str[0] != '\0')
{
__libasm_seterrno (ASM_E_TYPE);
return -1;
}
}
else
{
size_t cnt;
for (cnt = 0; cnt < len; ++cnt)
if (str[cnt] != '\0')
{
__libasm_seterrno (ASM_E_TYPE);
return -1;
}
}
}
if (len == 0)
len = strlen (str) + 1;
if (unlikely (asmscn->ctx->textp))
{
bool nextline = true;
do
{
if (nextline)
{
fputs ("\t.string\t\"", asmscn->ctx->out.file);
nextline = false;
}
if (*str == '\0')
fputs ("\\000", asmscn->ctx->out.file);
else if (! isascii (*str))
fprintf (asmscn->ctx->out.file, "\\%03o",
(unsigned int) *((unsigned char *)str));
else if (*str == '\\')
fputs ("\\\\", asmscn->ctx->out.file);
else if (*str == '\n')
{
fputs ("\\n\"", asmscn->ctx->out.file);
nextline = true;
}
else
fputc (*str, asmscn->ctx->out.file);
++str;
}
while (--len > 0 && (len > 1 || *str != '\0'));
if (! nextline)
fputs ("\"\n", asmscn->ctx->out.file);
}
else
{
if (__libasm_ensure_section_space (asmscn, len) != 0)
return -1;
memcpy (&asmscn->content->data[asmscn->content->len], str, len);
asmscn->content->len += len;
asmscn->offset += len;
}
return 0;
}