Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
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 */
5char *to_rna(const char s[]);
6
7#endif