TheAlgorithms-C/exercism/rna_transcription/rna_transcription.h

7 lines
158 B
C
Raw Normal View History

2018-01-27 02:32:30 +08:00
#ifndef __RNA_TRANSCRIPTION__H
#define __RNA_TRANSCRIPTION__H
/* to_rna: compiles a DNA strand in its RNA complement */
char *to_rna(const char s[]);
2018-01-27 02:32:30 +08:00
#endif