Fixing header reserved identifiers to comply with naming convention #299.

This commit is contained in:
Martin Dvorak 2018-08-14 19:34:24 +02:00
parent e72544e0ee
commit 2a4e3a908f
9 changed files with 19 additions and 19 deletions

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HASHSET_H_
#define _HASHSET_H_
#ifndef HASHSET_H
#define HASHSET_H
#include "hstr_utils.h"

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef HSTR_H_
#define HSTR_H_
#ifndef HSTR_H
#define HSTR_H
#include <getopt.h>
#include <locale.h>

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef HSTR_BLACKLIST_H_
#define HSTR_BLACKLIST_H_
#ifndef HSTR_BLACKLIST_H
#define HSTR_BLACKLIST_H
#include "hashset.h"

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HSTR_CURSES_H
#define _HSTR_CURSES_H
#ifndef HSTR_CURSES_H
#define HSTR_CURSES_H
#ifdef __APPLE__
#include <curses.h>

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HSTR_FAVORITES_H_
#define _HSTR_FAVORITES_H_
#ifndef HSTR_FAVORITES_H
#define HSTR_FAVORITES_H
#include "hashset.h"

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HSTR_HISTORY_H_
#define _HSTR_HISTORY_H_
#ifndef HSTR_HISTORY_H
#define HSTR_HISTORY_H
#include <fcntl.h>
#include <limits.h>

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HSTR_REGEXP_H
#define _HSTR_REGEXP_H
#ifndef HSTR_REGEXP_H
#define HSTR_REGEXP_H
#include <regex.h>

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef _HSTR_UTILS_H
#define _HSTR_UTILS_H
#ifndef HSTR_UTILS_H
#define HSTR_UTILS_H
#include <ctype.h>
#include <sys/ioctl.h>

View file

@ -16,8 +16,8 @@
limitations under the License.
*/
#ifndef RADIXSORT_H_
#define RADIXSORT_H_
#ifndef RADIXSORT_H
#define RADIXSORT_H
#include <math.h>
#include <stddef.h>
@ -68,4 +68,4 @@ RadixItem** radixsort_dump(RadixSorter* rs);
void radixsort_destroy(RadixSorter* rs);
void radixsort_stat(RadixSorter* rs, bool listing);
#endif /* RADIXSORT_H_ */
#endif