From b9c6d533c2aa10bce62e8b0ac8f2072dc59d803f Mon Sep 17 00:00:00 2001 From: AngeD Date: Thu, 22 Jun 2023 14:48:26 +0200 Subject: [PATCH] style: break long line --- crypto.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crypto.c b/crypto.c index 0986204..82318d3 100644 --- a/crypto.c +++ b/crypto.c @@ -1,7 +1,6 @@ #include #include #include -#include #include #include #include @@ -29,7 +28,9 @@ static size_t write_callback(char *response, size_t s, size_t n, void *buf) static char *build_url(void) { - const char base[] = "https://api.coingecko.com/api/v3/simple/price?ids=%s&vs_currencies=" VS; + const char base[] = + "https://api.coingecko.com/api/v3/simple/price?ids=%s&vs_currencies=" + VS; size_t ids_size = 0; char *url; char ids[BUF_SIZE] = {0};