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

Unified Diff: fusl/src/network/res_query.c

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/src/network/res_query.c
diff --git a/fusl/src/network/res_query.c b/fusl/src/network/res_query.c
index 2b4e4bb1bef80cbee75460ce55864fe01ba57b6e..9f37c135400e66266ba0ec7bb9289646299748cc 100644
--- a/fusl/src/network/res_query.c
+++ b/fusl/src/network/res_query.c
@@ -2,15 +2,27 @@
#include <netdb.h>
#include "libc.h"
-int __res_mkquery(int, const char *, int, int, const unsigned char *, int, const unsigned char*, unsigned char *, int);
-int __res_send(const unsigned char *, int, unsigned char *, int);
+int __res_mkquery(int,
+ const char*,
+ int,
+ int,
+ const unsigned char*,
+ int,
+ const unsigned char*,
+ unsigned char*,
+ int);
+int __res_send(const unsigned char*, int, unsigned char*, int);
-int __res_query(const char *name, int class, int type, unsigned char *dest, int len)
-{
- unsigned char q[280];
- int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q);
- if (ql < 0) return ql;
- return __res_send(q, ql, dest, len);
+int __res_query(const char* name,
+ int class,
+ int type,
+ unsigned char* dest,
+ int len) {
+ unsigned char q[280];
+ int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q);
+ if (ql < 0)
+ return ql;
+ return __res_send(q, ql, dest, len);
}
weak_alias(__res_query, res_query);

Powered by Google App Engine
This is Rietveld 408576698