TheAlgorithms-C/exercism/rna_transcription/rna_transcription.h
2020-01-09 10:27:32 +01:00

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