ref: 4a7f42e378e27bf70c928b411ac859c870c23f24
dir: /s3m.c/
#include "tagspriv.h" int tags3m(Tagctx *ctx) { uint8_t d[28+1+1], o[28*UTFmax+1], *s; if(ctx->read(ctx, d, 28+1+1) != 28+1+1 || (d[28] != 0x1a && d[28] != 0) || d[29] != 0x10) return -1; d[28] = 0; for(s = d+27; s >= d && (*s == ' ' || *s == 0); s--); s[1] = 0; if(cp437toutf8(o, sizeof(o), d, s+1-d) > 0) txtcb(ctx, Ttitle, "", o); return 0; }