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

Annotation of /lbbs/src/article_op.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations)
Tue Nov 4 13:49:51 2025 UTC (4 months, 1 week ago) by sysadm
Branch: MAIN
Changes since 1.1: +7 -15 lines
Content type: text/x-csrc
Update 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     * Copyright (C) 2004-2025 by Leaflet <leaflet@leafok.com>
7     */
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