mirror of
https://github.com/janet-lang/janet
synced 2025-11-21 17:54:49 +00:00
Use make format.
This commit is contained in:
@@ -2,9 +2,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <janet.h>
|
#include <janet.h>
|
||||||
|
|
||||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||||
char *new_str = (char *)malloc(size+1);
|
char *new_str = (char *)malloc(size + 1);
|
||||||
if (new_str == NULL){
|
if (new_str == NULL) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
memcpy(new_str, data, size);
|
memcpy(new_str, data, size);
|
||||||
|
|||||||
Reference in New Issue
Block a user