Codebase list enumiax / cb68e73e-9cf3-4d0b-8653-9e0ea2755ee9/main charmap.c
cb68e73e-9cf3-4d0b-8653-9e0ea2755ee9/main

Tree @cb68e73e-9cf3-4d0b-8653-9e0ea2755ee9/main (Download .tar.gz)

charmap.c @cb68e73e-9cf3-4d0b-8653-9e0ea2755ee9/mainraw · history · blame

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include "enumiax.h"
#include "charmap.h"


int charmap_c_to_d( char ch ) {
	int d;

	for( d = 0; charmap[d] != '\0'; d++ )
		if( charmap[d] == ch ) break;

	return d;
}