mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
26 lines
1.5 KiB
C
26 lines
1.5 KiB
C
// Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
|
|
// SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
// SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
const char *ascii_logo =
|
|
" _._ \n"
|
|
" _.-``__ ''-._ \n"
|
|
" _.-`` `. `_. ''-._ Redict %s (%s/%d) %s bit\n"
|
|
" .-`` .-```. ```\\/ _.,_ ''-._ \n"
|
|
" ( ' , .-` | `, ) Running in %s mode\n"
|
|
" |`-._`-...-` __...-.``-._|'` _.-'| Port: %d\n"
|
|
" | `-._ `._ / _.-' | PID: %ld\n"
|
|
" `-._ `-._ `-./ _.-' _.-' \n"
|
|
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
|
|
" | `-._`-._ _.-'_.-' | https://redict.io \n"
|
|
" `-._ `-._`-.__.-'_.-' _.-' \n"
|
|
" |`-._`-._ `-.__.-' _.-'_.-'| \n"
|
|
" | `-._`-._ _.-'_.-' | \n"
|
|
" `-._ `-._`-.__.-'_.-' _.-' \n"
|
|
" `-._ `-.__.-' _.-' \n"
|
|
" `-._ _.-' \n"
|
|
" `-.__.-' \n\n";
|