ADD; added Marshmellow42 's fixes for indala and stuff.

CHG: updated the CHANGELOG.md
This commit is contained in:
iceman1001 2016-03-06 07:56:44 +01:00
commit eb891c385e
7 changed files with 68 additions and 55 deletions

View file

@ -9,13 +9,12 @@
//-----------------------------------------------------------------------------
#include <stdio.h>
#include <stdint.h>
#include <stdio.h>
#include <stdint.h> //included in data.h
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include "data.h"
#include "data.h" //for FILE_PATH_SIZE
#ifndef ROTR
# define ROTR(x,n) (((uintmax_t)(x) >> (n)) | ((uintmax_t)(x) << ((sizeof(x) * 8) - (n))))