Re: morse(6) sound

From: Hans Petter Selasky <hps_at_selasky.org>
Date: Sat, 29 Oct 2022 18:22:14 UTC
On 10/29/22 20:18, Nuno Teixeira wrote:
>> Technically you could symlink the two - yes.
> 
> Can't understand how, what do I missing?
> 

In the main() routine, the name of the program name is passed.

Then you just check if argv[0] == "morse" and invoke main_morse() 
instead, if you see. Of course you need to write main_morse() first, but 
you can re-use all the dsp code in there.

--HPS