mirror of
https://github.com/tmpest127/enc_pic_str
synced 2026-06-08 17:51:05 +00:00
18 lines
313 B
C
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;
|
|
}
|