mirror of
https://github.com/tmpest127/enc_pic_str
synced 2026-06-08 17:51:05 +00:00
8 lines
194 B
C
8 lines
194 B
C
#include <stdio.h>
|
|
#include "pic_str.h"
|
|
|
|
void greet_user(void) {
|
|
printf("%s", pic_str("Hello from greet.c!\n"));
|
|
printf("%s", pic_str("This file contains greeting functionality.\n"));
|
|
}
|