mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
removed leading underscore of include guards
This commit is contained in:
parent
d37783706c
commit
2c8c6d588a
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_H
|
||||
#define _WSFS_H
|
||||
#ifndef WSFS_H
|
||||
#define WSFS_H
|
||||
|
||||
#include "wsfs/api.h"
|
||||
#include "wsfs/server.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_API_H
|
||||
#define _WSFS_API_H
|
||||
#ifndef WSFS_API_H
|
||||
#define WSFS_API_H
|
||||
|
||||
#ifndef WSFS_API
|
||||
#define WSFS_API
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_SERVER_H
|
||||
#define _WSFS_SERVER_H
|
||||
#ifndef WSFS_SERVER_H
|
||||
#define WSFS_SERVER_H
|
||||
|
||||
#include "wsfs/api.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_SERVER_CONFIG_H
|
||||
#define _WSFS_SERVER_CONFIG_H
|
||||
#ifndef WSFS_SERVER_CONFIG_H
|
||||
#define WSFS_SERVER_CONFIG_H
|
||||
|
||||
#include "wsfs/api.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_SERVER_PROTOCOL_H
|
||||
#define _WSFS_SERVER_PROTOCOL_H
|
||||
#ifndef WSFS_SERVER_PROTOCOL_H
|
||||
#define WSFS_SERVER_PROTOCOL_H
|
||||
|
||||
#include "wsfs/api.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_H
|
||||
#define _WSFSP_H
|
||||
#ifndef WSFSP_H
|
||||
#define WSFSP_H
|
||||
|
||||
#include "wsfsp/api.h"
|
||||
#include "wsfsp/provider.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_API_H
|
||||
#define _WSFSP_API_H
|
||||
#ifndef WSFSP_API_H
|
||||
#define WSFSP_API_H
|
||||
|
||||
#ifndef WSFSP_API
|
||||
#define WSFSP_API
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_CLIENT_H
|
||||
#define _WSFSP_CLIENT_H
|
||||
#ifndef WSFSP_CLIENT_H
|
||||
#define WSFSP_CLIENT_H
|
||||
|
||||
#include "wsfsp/api.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_CLIENT_PROTOCOL_H
|
||||
#define _WSFSP_CLIENT_PROTOCOL_H
|
||||
#ifndef WSFSP_CLIENT_PROTOCOL_H
|
||||
#define WSFSP_CLIENT_PROTOCOL_H
|
||||
|
||||
#include "wsfsp/api.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSp_H
|
||||
#define _WSFSp_H
|
||||
#ifndef WSFSP_PROVIDER_H
|
||||
#define WSFSP_PROVIDER_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_FILESYSTEM_H
|
||||
#define _WSFS_FILESYSTEM_H
|
||||
#ifndef WSFS_FILESYSTEM_H
|
||||
#define WSFS_FILESYSTEM_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stdbool.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_FUSE_H
|
||||
#define _WSFS_FUSE_H
|
||||
#ifndef WSFS_FUSE_H
|
||||
#define WSFS_FUSE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -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>
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_MESSAGE_H
|
||||
#define _WSFS_MESSAGE_H
|
||||
#ifndef WSFS_MESSAGE_H
|
||||
#define WSFS_MESSAGE_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_MESSAGE_QUEUE_H
|
||||
#define _WSFS_MESSAGE_QUEUE_H
|
||||
#ifndef WSFS_MESSAGE_QUEUE_H
|
||||
#define WSFS_MESSAGE_QUEUE_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stdbool.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_OPERATIONS
|
||||
#define _WSFS_OPERATIONS
|
||||
#ifndef WSFS_OPERATIONS
|
||||
#define WSFS_OPERATIONS
|
||||
|
||||
#include "wsfs/fuse_wrapper.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_SERVER_PROTOCOL_INTERN_H
|
||||
#define _WSFS_SERVER_PROTOCOL_INTERN_H
|
||||
#ifndef WSFS_SERVER_PROTOCOL_INTERN_H
|
||||
#define WSFS_SERVER_PROTOCOL_INTERN_H
|
||||
|
||||
#include "wsfs/server_protocol.h"
|
||||
#include "wsfs/filesystem.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_STATUS_H
|
||||
#define _WSFS_STATUS_H
|
||||
#ifndef WSFS_STATUS_H
|
||||
#define WSFS_STATUS_H
|
||||
|
||||
#define WSFS_GOOD 0
|
||||
#define WSFS_BAD 1
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TIME_TIMEOUT_MANAGER_H
|
||||
#define _WSFS_TIME_TIMEOUT_MANAGER_H
|
||||
#ifndef WSFS_TIME_TIMEOUT_MANAGER_H
|
||||
#define WSFS_TIME_TIMEOUT_MANAGER_H
|
||||
|
||||
struct wsfs_timer;
|
||||
struct wsfs_timeout_manager
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
|
||||
#define _WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
|
||||
#ifndef WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
|
||||
#define WSFS_TIME_TIMEOUT_MANAGER_INTERN_H
|
||||
|
||||
#include "wsfs/time/timeout_manager.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TIME_TIMEPOINT_H
|
||||
#define _WSFS_TIME_TIMEPOINT_H
|
||||
#ifndef WSFS_TIME_TIMEPOINT_H
|
||||
#define WSFS_TIME_TIMEPOINT_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stdbool.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TIMER_H
|
||||
#define _WSFS_TIMER_H
|
||||
#ifndef WSFS_TIMER_H
|
||||
#define WSFS_TIMER_H
|
||||
|
||||
#include "wsfs/time/timepoint.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TIME_TIMER_INTERN_H
|
||||
#define _WSFS_TIME_TIMER_INTERN_H
|
||||
#ifndef WSFS_TIME_TIMER_INTERN_H
|
||||
#define WSFS_TIME_TIMER_INTERN_H
|
||||
|
||||
#ifndef __cplusplus
|
||||
#include <stdbool.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_UTIL_H
|
||||
#define _WSFS_UTIL_H
|
||||
#ifndef WSFS_UTIL_H
|
||||
#define WSFS_UTIL_H
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define WSFS_UNUSED_PARAM(param) param __attribute__((unused))
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_CLIENT_PROTOCOL_INTERN_H
|
||||
#define _WSFSP_CLIENT_PROTOCOL_INTERN_H
|
||||
#ifndef WSFSP_CLIENT_PROTOCOL_INTERN_H
|
||||
#define WSFSP_CLIENT_PROTOCOL_INTERN_H
|
||||
|
||||
#include "wsfsp/client_protocol.h"
|
||||
#include "wsfsp/provider.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFSP_PROVIDER_DEFAULT_H
|
||||
#define _WSFSP_PROVIDER_DEFAULT_H
|
||||
#ifndef WSFSP_PROVIDER_DEFAULT_H
|
||||
#define WSFSP_PROVIDER_DEFAULT_H
|
||||
|
||||
#include "wsfsp/provider.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _WSFS_TEST_MSLEEP_HPP
|
||||
#define _WSFS_TEST_MSLEEP_HPP
|
||||
#ifndef WSFS_TEST_MSLEEP_HPP
|
||||
#define WSFS_TEST_MSLEEP_HPP
|
||||
|
||||
namespace wsfs_test
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user