mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
7 lines
158 B
C
7 lines
158 B
C
#ifndef __RNA_TRANSCRIPTION__H
|
|
#define __RNA_TRANSCRIPTION__H
|
|
|
|
/* to_rna: compiles a DNA strand in its RNA complement */
|
|
char *to_rna(const char s[]);
|
|
|
|
#endif |