Author:
- Name: Frans van Dorsselaer
Location: NL - Kingdom of the Netherlands (Netherlands)
To build:
make all
To use:
./dorssel
# input some text
echo text | ./dorssel
Try:
./try.sh
Judges’ remarks:
How does the program decide which way to convert?
What obsolescent feature are we talking about? (No, it’s not a C language feature.)
The author suggests that you try to answer the following questions:
Which character in the initializing string is totally irrelevant?
Which two relevant characters in the initializing string may be exchanged without altering the behavior?
Which characters in the initializing string are somewhat irrelevant, and to what values may they be changed without altering the behavior?
Which characters may be used to enlarge the initializing string by one without altering the behavior ?
Extra credit:
Try doing what the last part of the last command in try.sh suggests. As in, do the following:
echo ". -..- . .-. -.-. .. ... .
-.-. .... .- -. --. . - .... . .--. .-. --- --. .-. .- -- ... --- .. - -.. --- . ... -. --- - ... .... --- ..- -" | ./dorssel
and make the necessary adjustments.
You might also want to read the dorssel.html file.
Author’s remarks:
Usage
This program converts ASCII to Morse code, and vice versa.
The program reads in lines from standard input and writes its result to standard output. The direction of conversion is determined on a per line basis. Each line must consist of a maximum of 952 characters followed by a new line character and they must not contain any NUL characters. Otherwise, some characters may be lost in the conversion.
Encoding to Morse code: The program knows the Morse codes for all Latin letters (a-z, case insensitive) and decimal digits (0-9). Any other characters are replaced by an ASCII space,
' '
. Morse code per converted character is written as a sequence of.
and-
characters, each sequence followed by a space.Decoding from Morse code: Morse code should be typed as sequences of
.
and-
characters, separated by a space. Extra spaces will be echoed back (to separate words). Unknown sequences will be converted to a?
character.
Notes
The program assumes both source and execution character sets to be ASCII. As far as I can tell, the program is conforming and does not invoke undefined behavior.
Hints
Try:
./dorssel < dorssel.c | ./dorssel
to see what variables, numbers, and functions are used. (Does a better job than most C beautifiers).
- Filter your text twice (as in the previous sample) to obtain a version of your text that can be reversibly Morsified, i.e.
./dorssel < dorssel.c | ./dorssel | ./dorssel | ./dorssel
is the same as
./dorssel < dorssel.c | ./dorssel
NOTICE to those who wish for a greater challenge:
If you want a greater challenge, don’t read any further: just try to understand the program without running the command below. If you get stuck, come back and read the below.
The file dorssel.html contains all the information needed to understand this program.
For more information you might also try:
./dorssel < dorssel.md
Inventory for 1998/dorssel
Primary files
- dorssel.c - entry source code
- Makefile - entry Makefile
- dorssel.orig.c - original source code
- dorssel.html - author’s description of entry
- try.sh - script to try entry
Secondary files
- 1998_dorssel.tar.bz2 - download entry tarball
- README.md - markdown source for this web page
- dorssel.md - markdown source for dorssel.html
- .entry.json - entry summary and manifest in JSON
- .gitignore - list of files that should not be committed under git
- .path - directory path from top level directory
- index.html - this web page