You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
284 B

#include <stdbool.h>
const char * char_to_morse(char letter);
char * string_to_morse(char* string);
char * from_morse(char* string);
void print_morse(char* string, bool b1, bool b2, long s1, long s2);
void reverse_morse(char* string);
char *multi_tok(char *input, char *delimiter);