diff options
Diffstat (limited to 'src/core/support/file.h')
-rw-r--r-- | src/core/support/file.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/support/file.h b/src/core/support/file.h index 9b42f09f76..d8b7cea44f 100644 --- a/src/core/support/file.h +++ b/src/core/support/file.h @@ -39,8 +39,7 @@ #include <grpc/support/slice.h> #ifdef __cplusplus -extern "C" -{ +extern "C" { #endif /* File utility functions */ @@ -48,16 +47,17 @@ extern "C" /* Loads the content of a file into a slice. add_null_terminator will add a NULL terminator if non-zero. The success parameter, if not NULL, will be set to 1 in case of success and 0 in case of failure. */ - gpr_slice gpr_load_file (const char *filename, int add_null_terminator, int *success); +gpr_slice gpr_load_file(const char *filename, int add_null_terminator, + int *success); /* Creates a temporary file from a prefix. If tmp_filename is not NULL, *tmp_filename is assigned the name of the created file and it is the responsibility of the caller to gpr_free it unless an error occurs in which case it will be set to NULL. */ - FILE *gpr_tmpfile (const char *prefix, char **tmp_filename); +FILE *gpr_tmpfile(const char *prefix, char **tmp_filename); #ifdef __cplusplus } #endif -#endif /* GRPC_INTERNAL_CORE_SUPPORT_FILE_H */ +#endif /* GRPC_INTERNAL_CORE_SUPPORT_FILE_H */ |