This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* sse.h - a wrapper made in C for SSE | |
*/ | |
#ifndef INTRINSICS_H | |
#define INTRINSICS_H | |
#if (__STDC_VERSION__ > 199409L) | |
#define USE_INLINE inline | |
#else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define RNACOMP(x0, x1) (rna[i + 2] == x0 || rna[i + 2] == x1) | |
char *dna_to_rna(char *dna) | |
{ | |
size_t sz = strlen(dna); | |
unsigned i; |
NewerOlder