#include "../hyper.h" // a tool to generate the music tables for Android and iOS namespace hr { string crop(string s) { string res; for(char c: s) if(c == '-') res = ""; else res += c; return res; } string cropios(string s) { string res; for(char c: s) if(c == '.') return res; else res += c; return res; } auto aec = arg::add3("-music-ios", [] { for(int i=0; i