precompile on startup

This commit is contained in:
udo
2022-01-31 00:42:16 +00:00
parent 3a9dfba86c
commit 0a6ebc60f0
31 changed files with 930 additions and 62 deletions
+10
View File
@@ -533,3 +533,13 @@ String ob_get_close()
return(result);
}
String safe_name(String raw)
{
String result = "";
for(auto c : raw)
{
if(isalnum(c) || c == '_')
result.append(1, c);
}
return(result);
}