TheAlgorithms-C/exercism/rna-transcription/rna_transcription.h

7 lines
159 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[]);
#endif