Files
tmpest127-enc_pic_str/examples/06-batch-mode/main.c
T
2026-01-29 14:33:44 +04:00

18 lines
313 B
C

#include <stdio.h>
#include "pic_str.h"
// External functions from other files
extern void greet_user(void);
extern void show_info(void);
int main() {
printf("%s", pic_str("=== Batch Mode Demo ===\n"));
greet_user();
show_info();
printf("%s", pic_str("Program complete!\n"));
return 0;
}