Badges and mingw warnings
This commit is contained in:
parent
433d907ae8
commit
618f28a519
|
@ -1,4 +1,5 @@
|
||||||
[![Build Status](https://travis-ci.org/LiquidityC/breakhack.svg?branch=master)](https://travis-ci.org/LiquidityC/breakhack)
|
[![Build Status](https://travis-ci.org/LiquidityC/breakhack.svg?branch=master)](https://travis-ci.org/LiquidityC/breakhack)
|
||||||
|
[![Build status](https://ci.appveyor.com/api/projects/status/2nvna97cmm4cf535?svg=true)](https://ci.appveyor.com/project/LiquidityC/breakhack)
|
||||||
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/fc02d56fa7194e61b2c7d260fd2e4186)](https://www.codacy.com/app/LiquidityC/breakhack?utm_source=github.com&utm_medium=referral&utm_content=LiquidityC/breakhack&utm_campaign=Badge_Grade)
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/fc02d56fa7194e61b2c7d260fd2e4186)](https://www.codacy.com/app/LiquidityC/breakhack?utm_source=github.com&utm_medium=referral&utm_content=LiquidityC/breakhack&utm_campaign=Badge_Grade)
|
||||||
|
|
||||||
Something in the ways of NETHACK
|
Something in the ways of NETHACK
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <stdlib.h>
|
||||||
#include "actiontext.h"
|
#include "actiontext.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,8 @@ hash(Hashtable *table, const char *key)
|
||||||
unsigned long int hashval = 0;
|
unsigned long int hashval = 0;
|
||||||
unsigned int i = 0;
|
unsigned int i = 0;
|
||||||
|
|
||||||
|
// TODO(Linus): This isn't very good,
|
||||||
|
// bad distribution on similar strings
|
||||||
while (hashval < ULONG_MAX && i < strlen(key)) {
|
while (hashval < ULONG_MAX && i < strlen(key)) {
|
||||||
hashval = hashval << 8;
|
hashval = hashval << 8;
|
||||||
hashval += key[i++];
|
hashval += key[i++];
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "monster.h"
|
#include "monster.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
|
@ -62,6 +62,8 @@ void roommatrix_populate_from_map(RoomMatrix *rm, Map *m)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO(Linus): These should probably be macros
|
||||||
|
#undef min
|
||||||
#ifndef min
|
#ifndef min
|
||||||
static int
|
static int
|
||||||
min(int a, int b)
|
min(int a, int b)
|
||||||
|
@ -70,6 +72,7 @@ min(int a, int b)
|
||||||
}
|
}
|
||||||
#endif // min
|
#endif // min
|
||||||
|
|
||||||
|
#undef max
|
||||||
#ifndef max
|
#ifndef max
|
||||||
static int
|
static int
|
||||||
max(int a, int b)
|
max(int a, int b)
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#ifdef __MINGW32__
|
||||||
|
#include <string_s.h>
|
||||||
|
#endif // __MINGW32__
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif // _WIN32
|
#endif // _WIN32
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue