/[LeafOK_CVS]/lbbs/src/article_op.c
ViewVC logotype

Contents of /lbbs/src/article_op.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Mon Nov 10 14:24:37 2025 UTC (4 months ago) by sysadm
Branch: MAIN
Changes since 1.3: +1 -1 lines
Content type: text/x-csrc
Replace ":" with ":"

1 /* SPDX-License-Identifier: GPL-3.0-or-later */
2 /*
3 * article_op
4 * - basic operations of articles
5 *
6 * Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com>
7 */
8
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