mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-26 07:19:55 +03:00
7 lines
159 B
C
7 lines
159 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 |