-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.c
More file actions
25 lines (22 loc) · 517 Bytes
/
Copy pathembed.c
File metadata and controls
25 lines (22 loc) · 517 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
*
* Copyright Daniel Haase 2020.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* https://www.boost.org/LICENSE_1_0.txt)
*
* This file belongs to objembed.
*
* Author: Daniel Haase
*
*/
#include <stdio.h>
extern char _binary_version_txt_start;
extern char _binary_version_txt_end;
int main(void)
{
char *txtseg = &_binary_version_txt_start;
while(txtseg != &_binary_version_txt_end)
putchar(*txtseg++);
return 0;
}