Skip to content

Instantly share code, notes, and snippets.

View andreabadesso's full-sized avatar

André Abadesso andreabadesso

View GitHub Profile
@andreabadesso
andreabadesso / codifica.c
Created April 7, 2014 14:58
Trying to access struct members knowing the data format
int codifica(void* valores, char *campos) {
char tipo;
int acc = 0;
int acc2 = 0;
int i;
for (i=0;i<=strlen(campos);i++) {
tipo = campos[i];
// p = *(int*)valores;
// v = (*((int*)valores+1));