1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +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_H #ifndef WSFS_H
#define _WSFS_H #define WSFS_H
#include "wsfs/api.h" #include "wsfs/api.h"
#include "wsfs/server.h" #include "wsfs/server.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_API_H #ifndef WSFS_API_H
#define _WSFS_API_H #define WSFS_API_H
#ifndef WSFS_API #ifndef WSFS_API
#define WSFS_API #define WSFS_API

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_SERVER_H #ifndef WSFS_SERVER_H
#define _WSFS_SERVER_H #define WSFS_SERVER_H
#include "wsfs/api.h" #include "wsfs/api.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_SERVER_CONFIG_H #ifndef WSFS_SERVER_CONFIG_H
#define _WSFS_SERVER_CONFIG_H #define WSFS_SERVER_CONFIG_H
#include "wsfs/api.h" #include "wsfs/api.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_SERVER_PROTOCOL_H #ifndef WSFS_SERVER_PROTOCOL_H
#define _WSFS_SERVER_PROTOCOL_H #define WSFS_SERVER_PROTOCOL_H
#include "wsfs/api.h" #include "wsfs/api.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_H #ifndef WSFSP_H
#define _WSFSP_H #define WSFSP_H
#include "wsfsp/api.h" #include "wsfsp/api.h"
#include "wsfsp/provider.h" #include "wsfsp/provider.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_API_H #ifndef WSFSP_API_H
#define _WSFSP_API_H #define WSFSP_API_H
#ifndef WSFSP_API #ifndef WSFSP_API
#define WSFSP_API #define WSFSP_API

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_CLIENT_H #ifndef WSFSP_CLIENT_H
#define _WSFSP_CLIENT_H #define WSFSP_CLIENT_H
#include "wsfsp/api.h" #include "wsfsp/api.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_CLIENT_PROTOCOL_H #ifndef WSFSP_CLIENT_PROTOCOL_H
#define _WSFSP_CLIENT_PROTOCOL_H #define WSFSP_CLIENT_PROTOCOL_H
#include "wsfsp/api.h" #include "wsfsp/api.h"

View File

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

View File

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

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_FUSE_H #ifndef WSFS_FUSE_H
#define _WSFS_FUSE_H #define WSFS_FUSE_H
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_OPERATIONS #ifndef WSFS_OPERATIONS
#define _WSFS_OPERATIONS #define WSFS_OPERATIONS
#include "wsfs/fuse_wrapper.h" #include "wsfs/fuse_wrapper.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_SERVER_PROTOCOL_INTERN_H #ifndef WSFS_SERVER_PROTOCOL_INTERN_H
#define _WSFS_SERVER_PROTOCOL_INTERN_H #define WSFS_SERVER_PROTOCOL_INTERN_H
#include "wsfs/server_protocol.h" #include "wsfs/server_protocol.h"
#include "wsfs/filesystem.h" #include "wsfs/filesystem.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_STATUS_H #ifndef WSFS_STATUS_H
#define _WSFS_STATUS_H #define WSFS_STATUS_H
#define WSFS_GOOD 0 #define WSFS_GOOD 0
#define WSFS_BAD 1 #define WSFS_BAD 1

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_TIME_TIMEOUT_MANAGER_H #ifndef WSFS_TIME_TIMEOUT_MANAGER_H
#define _WSFS_TIME_TIMEOUT_MANAGER_H #define WSFS_TIME_TIMEOUT_MANAGER_H
struct wsfs_timer; struct wsfs_timer;
struct wsfs_timeout_manager struct wsfs_timeout_manager

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_TIME_TIMEOUT_MANAGER_INTERN_H #ifndef WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
#define _WSFS_TIME_TIMEOUT_MANAGER_INTERN_H #define WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
#include "wsfs/time/timeout_manager.h" #include "wsfs/time/timeout_manager.h"

View File

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

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_TIMER_H #ifndef WSFS_TIMER_H
#define _WSFS_TIMER_H #define WSFS_TIMER_H
#include "wsfs/time/timepoint.h" #include "wsfs/time/timepoint.h"

View File

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

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_UTIL_H #ifndef WSFS_UTIL_H
#define _WSFS_UTIL_H #define WSFS_UTIL_H
#ifdef __GNUC__ #ifdef __GNUC__
#define WSFS_UNUSED_PARAM(param) param __attribute__((unused)) #define WSFS_UNUSED_PARAM(param) param __attribute__((unused))

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_CLIENT_PROTOCOL_INTERN_H #ifndef WSFSP_CLIENT_PROTOCOL_INTERN_H
#define _WSFSP_CLIENT_PROTOCOL_INTERN_H #define WSFSP_CLIENT_PROTOCOL_INTERN_H
#include "wsfsp/client_protocol.h" #include "wsfsp/client_protocol.h"
#include "wsfsp/provider.h" #include "wsfsp/provider.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFSP_PROVIDER_DEFAULT_H #ifndef WSFSP_PROVIDER_DEFAULT_H
#define _WSFSP_PROVIDER_DEFAULT_H #define WSFSP_PROVIDER_DEFAULT_H
#include "wsfsp/provider.h" #include "wsfsp/provider.h"

View File

@ -1,5 +1,5 @@
#ifndef _WSFS_TEST_MSLEEP_HPP #ifndef WSFS_TEST_MSLEEP_HPP
#define _WSFS_TEST_MSLEEP_HPP #define WSFS_TEST_MSLEEP_HPP
namespace wsfs_test namespace wsfs_test
{ {