Apply clang-format for core/shared and product-mini files (#785)

Apply clang-format for core/shared and product-mini files
This commit is contained in:
Wenyong Huang
2021-10-14 09:12:07 +08:00
committed by GitHub
parent fb4afc7ca4
commit 17f62ad472
107 changed files with 3436 additions and 2898 deletions

View File

@ -9,19 +9,22 @@
#include <stdio.h>
#include <string.h>
char* optarg = NULL;
char *optarg = NULL;
int optind = 1;
int getopt(int argc, char *const argv[], const char *optstring)
int
getopt(int argc, char *const argv[], const char *optstring)
{
static int sp = 1;
int opt;
char *p;
if (sp == 1) {
if ((optind >= argc) || (argv[optind][0] != '-') || (argv[optind][1] == 0)){
if ((optind >= argc) || (argv[optind][0] != '-')
|| (argv[optind][1] == 0)) {
return -1;
} else if (!strcmp(argv[optind], "--")) {
}
else if (!strcmp(argv[optind], "--")) {
optind++;
return -1;
}
@ -31,24 +34,26 @@ int getopt(int argc, char *const argv[], const char *optstring)
p = strchr(optstring, opt);
if (opt == ':' || p == NULL) {
printf("illegal option : '-%c'\n", opt);
if ( argv[optind][++sp] == '\0') {
optind ++;
if (argv[optind][++sp] == '\0') {
optind++;
sp = 1;
}
return ('?');
}
if (p[1] == ':') {
if (p[1] == ':') {
if (argv[optind][sp + 1] != '\0')
optarg = &argv[optind++][sp + 1];
else if (++optind >= argc) {
printf("option '-%c' requires an argument :\n", opt);
sp = 1;
return ('?');
} else {
}
else {
optarg = argv[optind++];
}
sp = 1;
} else {
}
else {
if (argv[optind][++sp] == '\0') {
sp = 1;
optind++;

View File

@ -17,7 +17,8 @@ extern "C" {
extern char *optarg;
extern int optind;
int getopt(int argc, char *const argv[], const char *optstring);
int
getopt(int argc, char *const argv[], const char *optstring);
#ifdef __cplusplus
}

View File

@ -9,7 +9,7 @@
#endif
#if defined(_WIN32) || defined(_WIN32_)
char*
char *
bh_read_file_to_buffer(const char *filename, uint32 *ret_size)
{
char *buffer;
@ -22,15 +22,13 @@ bh_read_file_to_buffer(const char *filename, uint32 *ret_size)
return NULL;
}
if (_sopen_s(&file, filename, _O_RDONLY| _O_BINARY, _SH_DENYNO, 0)) {
printf("Read file to buffer failed: open file %s failed.\n",
filename);
if (_sopen_s(&file, filename, _O_RDONLY | _O_BINARY, _SH_DENYNO, 0)) {
printf("Read file to buffer failed: open file %s failed.\n", filename);
return NULL;
}
if (fstat(file, &stat_buf) != 0) {
printf("Read file to buffer failed: fstat file %s failed.\n",
filename);
printf("Read file to buffer failed: fstat file %s failed.\n", filename);
_close(file);
return NULL;
}
@ -61,7 +59,7 @@ bh_read_file_to_buffer(const char *filename, uint32 *ret_size)
return buffer;
}
#else /* else of defined(_WIN32) || defined(_WIN32_) */
char*
char *
bh_read_file_to_buffer(const char *filename, uint32 *ret_size)
{
char *buffer;
@ -75,14 +73,12 @@ bh_read_file_to_buffer(const char *filename, uint32 *ret_size)
}
if ((file = open(filename, O_RDONLY, 0)) == -1) {
printf("Read file to buffer failed: open file %s failed.\n",
filename);
printf("Read file to buffer failed: open file %s failed.\n", filename);
return NULL;
}
if (fstat(file, &stat_buf) != 0) {
printf("Read file to buffer failed: fstat file %s failed.\n",
filename);
printf("Read file to buffer failed: fstat file %s failed.\n", filename);
close(file);
return NULL;
}

View File

@ -20,4 +20,3 @@ bh_read_file_to_buffer(const char *filename, uint32 *ret_size);
#endif
#endif /* end of _BH_FILE_H */