My own rewrite of the BSD morse code recreational utility
Revision | 7be3e0aecf9991e8157ed19d00cd401358ecf360 (tree) |
---|---|
Zeit | 2021-08-29 19:36:07 |
Autor | ![]() |
Commiter | Joel Matthew Rees |
a few more encodings
@@ -107,6 +107,15 @@ const struct punc { | ||
107 | 107 | { '"', ".-..-." }, |
108 | 108 | { '=', "-...-" }, |
109 | 109 | { '+', ".-.-." }, |
110 | +/* JMR20210829: since 2005? for email addy */ | |
111 | + { '@', ".--.-." }, | |
112 | +/* JMR20210829: Not universally accepted stuff: */ | |
113 | + { '!', "-.-.--" }, | |
114 | + { '&', ".-..." }, | |
115 | + { ';', "-.-.-." }, | |
116 | + { '_', "..--.-" }, | |
117 | + { '$', "...-..-" }, | |
118 | +/* JMR20210829 end end. */ | |
110 | 119 | { '\0', NULL } |
111 | 120 | }; |
112 | 121 |