1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-14 20:35:54 +05:30

asprintf.c: fix grammar

This commit is contained in:
Intel A80486DX2-66 2024-03-13 22:40:19 +03:00
parent 4bbb0b6c5e
commit c8e2aa3308
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -47,7 +47,7 @@ ssize_t asprintf(char** strp, char* format, ...) {
} while (0)
int main(void) {
const char* world = " world";
const char* world = ", World";
char* output;
ssize_t result = asprintf(&output, "Hello%s! -- Unsigned 32-bit type is "