Compare commits

...

2 Commits

Author SHA1 Message Date
Peter J. Holzer 91b9809c27 Optionally memset the malloced memory 2024-12-11 12:54:35 +01:00
Peter J. Holzer 841b95221c use locale 2024-12-11 12:45:26 +01:00
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -10,6 +11,8 @@ char *cmnd;
int main(int argc, char **argv) {
int i;
setlocale(LC_ALL, "");
cmnd = argv[0];
if (argc <= 1) {

View File

@ -1,10 +1,17 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char **argv) {
size_t size = strtoul(argv[1], NULL, 0);
char *p = malloc(size);
printf("%zu bytes at %p\n", size, p);
if (argv[2]) {
unsigned char c = strtoul(argv[2], NULL, 0);
memset(p, c, size);
printf("filled with %zu %02x bytes\n", size, c);
}
sleep(10);
return 0;
}