diff --git a/README.md b/README.md index 64f221f..0294029 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [![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) +[![CodeFactor](https://www.codefactor.io/repository/github/liquidityc/breakhack/badge/master)](https://www.codefactor.io/repository/github/liquidityc/breakhack/overview/master) Something in the ways of NETHACK diff --git a/src/linkedlist.h b/src/linkedlist.h index 919a3ea..3496bd1 100644 --- a/src/linkedlist.h +++ b/src/linkedlist.h @@ -42,6 +42,5 @@ void linkedlist_each(LinkedList **head, void (*fun)(void*)); void linkedlist_destroy(LinkedList **head); unsigned int linkedlist_size(LinkedList *head); - #endif // LINKEDLIST_H_