Algorithms_in_C  1.0.0
Set of algorithms implemented in C.
rna_transcription.h
1 #ifndef __RNA_TRANSCRIPTION__H
2 #define __RNA_TRANSCRIPTION__H
3 
4 /* to_rna: compiles a DNA strand in its RNA complement */
5 char *to_rna(const char s[]);
6 
7 #endif