actube/src/cw/bstr_create_from_str.c
7u83@mail.ru 847781bf7c moved unsied files, compiles w/o waringins with clang
FossilOrigin-Name: 1189a474bfcc28195d888d7967ccfc50c812f194e1ee19e99d3cb244d666a19a
2018-03-25 08:07:39 +00:00

35 lines
553 B
C

#include "bstr.h"
#include "format.h"
uint8_t * bstr_create_from_str(const char *s)
{
int msize;
uint8_t * mem;
int l;
l= strlen(s);
if (s[0]!='.')
return bstr_create((uint8_t*)s,l);
if (l<=2)
return bstr_create((uint8_t*)s,l);
if (s[1]=='.')
return bstr_create((uint8_t*)s+1,l-1);
if (s[1]!='x')
return bstr_create((uint8_t*)s,l);
/* the string starts with ".x" - read hexbytes */
l-=2;
msize=l/2;
if(l&1)
msize++;
mem = malloc(1+msize);
*((uint8_t*)mem)=msize;
cw_format_scan_hex_bytes(mem+2,s+2,l);
return mem;
}