This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/src/stellar/logo.h
2024-04-21 11:30:41 +08:00

28 lines
587 B
C

#ifndef _LOGO_H
#define _LOGO_H
#ifdef __cplusplus
extern "C"
{
#endif
/* _ _ _
* ___ | |_ ___ | | | | __ _ _ __
* / __| | __| / _ \ | | | | / _` | | '__|
* \__ \ | |_ | __/ | | | | | (_| | | |
* |___/ \__| \___| |_| |_| \__,_| |_|
*/
static const char logo_str[] =
" _ _ _\n"
" ___ | |_ ___ | | | | __ _ _ __\n"
" / __| | __| / _ \\ | | | | / _` | | '__|\n"
" \\__ \\ | |_ | __/ | | | | | (_| | | |\n"
" |___/ \\__| \\___| |_| |_| \\__,_| |_|\n";
#ifdef __cplusplus
}
#endif
#endif