Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- StringToStars(str[])
- {
- for(new i = 0, s = strlen(str); i < s; i++)
- {
- switch(str[i])
- {
- case ' ', '-', '_':
- continue;
- default:
- str[i] = '*';
- }
- }
- }
Advertisement