1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

removed leading underscore of include guards

This commit is contained in:
Falk Werner
2019-02-22 16:59:08 +01:00
parent d37783706c
commit 2c8c6d588a
32 changed files with 64 additions and 64 deletions

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSONRPC_METHOD_H
#define _WSFS_JSONRPC_METHOD_H
#ifndef WSFS_JSONRPC_METHOD_H
#define WSFS_JSONRPC_METHOD_H
#ifndef __cplusplus
#include <stdbool.h>

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSONRPC_METHOD_INTERN_H
#define _WSFS_JSONRPC_METHOD_INTERN_H
#ifndef WSFS_JSONRPC_METHOD_INTERN_H
#define WSFS_JSONRPC_METHOD_INTERN_H
#include "wsfs/jsonrpc/method.h"

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSONRPC_REQUEST_H
#define _WSFS_JSONRPC_REQUEST_H
#ifndef WSFS_JSONRPC_REQUEST_H
#define WSFS_JSONRPC_REQUEST_H
#ifndef __cplusplus
#include <stdarg.h>

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSONRPC_RESPONSE_H
#define _WSFS_JSONRPC_RESPONSE_H
#ifndef WSFS_JSONRPC_RESPONSE_H
#define WSFS_JSONRPC_RESPONSE_H
#ifndef __cplusplus
#include <stddef.h>

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSONRPC_SERVER_H
#define _WSFS_JSONRPC_SERVER_H
#ifndef WSFS_JSONRPC_SERVER_H
#define WSFS_JSONRPC_SERVER_H
#ifndef __cplusplus
#include <stdarg.h>

View File

@@ -1,5 +1,5 @@
#ifndef _WSFS_JSON_UTIL_H
#define _WSFS_JSON_UTIL_H
#ifndef WSFS_JSON_UTIL_H
#define WSFS_JSON_UTIL_H
#include <jansson.h>