16 lines
270 B
C
16 lines
270 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <czmq.h>
|
|
#include <guestfs.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
if (argc < 2) {
|
|
printf("Usage: %s <disk-path>\n", argv[0]);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
|
|
printf("Hello, %s!\n", argv[1]);
|
|
return EXIT_SUCCESS;
|
|
}
|