Parent Directory
|
Revision Log
Refine file header information comments
| 1 | sysadm | 1.2 | /* SPDX-License-Identifier: GPL-3.0-or-later */ |
| 2 | /* | ||
| 3 | * article_op | ||
| 4 | * - basic operations of articles | ||
| 5 | * | ||
| 6 | sysadm | 1.3 | * Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
| 7 | sysadm | 1.2 | */ |
| 8 | sysadm | 1.1 | |
| 9 | #include "article_op.h" | ||
| 10 | #include "bbs.h" | ||
| 11 | #include "io.h" | ||
| 12 | #include "screen.h" | ||
| 13 | |||
| 14 | int display_article_meta(int32_t aid) | ||
| 15 | { | ||
| 16 | clearscr(); | ||
| 17 | moveto(3, 1); | ||
| 18 | prints("Web版 文章链接:"); | ||
| 19 | moveto(4, 1); | ||
| 20 | prints("http://%s/bbs/view_article.php?id=%d#%d", BBS_server, aid, aid); | ||
| 21 | press_any_key(); | ||
| 22 | |||
| 23 | return 0; | ||
| 24 | } |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |