Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Unified Diff: fusl/include/sys/xattr.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/include/sys/xattr.h
diff --git a/fusl/include/sys/xattr.h b/fusl/include/sys/xattr.h
index f926493cbca804f0c53d063fedd8761a46f397a2..171d36c4c2e09bee3828b3646575cae4df512484 100644
--- a/fusl/include/sys/xattr.h
+++ b/fusl/include/sys/xattr.h
@@ -1,5 +1,5 @@
-#ifndef _SYS_XATTR_H
-#define _SYS_XATTR_H
+#ifndef _SYS_XATTR_H
+#define _SYS_XATTR_H
#ifdef __cplusplus
extern "C" {
#endif
@@ -11,18 +11,18 @@ extern "C" {
#define XATTR_CREATE 1
#define XATTR_REPLACE 2
-ssize_t getxattr(const char *, const char *, void *, size_t);
-ssize_t lgetxattr(const char *, const char *, void *, size_t);
-ssize_t fgetxattr(int filedes, const char *, void *, size_t);
-ssize_t listxattr(const char *, char *, size_t);
-ssize_t llistxattr(const char *, char *, size_t);
-ssize_t flistxattr(int filedes, char *, size_t);
-int setxattr(const char *, const char *, const void *, size_t, int);
-int lsetxattr(const char *, const char *, const void *, size_t, int);
-int fsetxattr(int, const char *, const void *, size_t, int);
-int removexattr(const char *, const char *);
-int lremovexattr(const char *, const char *);
-int fremovexattr(int, const char *);
+ssize_t getxattr(const char*, const char*, void*, size_t);
+ssize_t lgetxattr(const char*, const char*, void*, size_t);
+ssize_t fgetxattr(int filedes, const char*, void*, size_t);
+ssize_t listxattr(const char*, char*, size_t);
+ssize_t llistxattr(const char*, char*, size_t);
+ssize_t flistxattr(int filedes, char*, size_t);
+int setxattr(const char*, const char*, const void*, size_t, int);
+int lsetxattr(const char*, const char*, const void*, size_t, int);
+int fsetxattr(int, const char*, const void*, size_t, int);
+int removexattr(const char*, const char*);
+int lremovexattr(const char*, const char*);
+int fremovexattr(int, const char*);
#ifdef __cplusplus
}

Powered by Google App Engine
This is Rietveld 408576698