ref: 3bc7b61cb1c7c34b4f1ad39771febe6ea61b5094
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; }