/[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.1 - (show annotations)
Tue Sep 30 04:56:25 2025 UTC (5 months, 2 weeks ago) by sysadm
Branch: MAIN
Content type: text/x-csrc
Add display_article_meta()

1 /***************************************************************************
2 article_op.c - description
3 -------------------
4 Copyright : (C) 2004-2025 by Leaflet
5 Email : leaflet@leafok.com
6 ***************************************************************************/
7
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 3 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17 #include "article_op.h"
18 #include "bbs.h"
19 #include "io.h"
20 #include "screen.h"
21
22 int display_article_meta(int32_t aid)
23 {
24 clearscr();
25 moveto(3, 1);
26 prints("Web版 文章链接:");
27 moveto(4, 1);
28 prints("http://%s/bbs/view_article.php?id=%d#%d", BBS_server, aid, aid);
29 press_any_key();
30
31 return 0;
32 }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1