summary refs log tree commit diff stats
path: root/tinyc/arm64-gen.c
Commit message (Expand)AuthorAgeFilesLines
* TinyC upgrade (#6593)Dmitry Atamanov2017-10-281-0/+1837
ble-island.net> 1996-09-02 19:39:24 -0400 snapshot of project "lynx", label v2_6' href='/ingrix/lynx-snapshots/commit/WWW/Library/Implementation/HTNews.h?id=e087f6d44e87f489fcb3056e86319ebba4218156'>e087f6d4
af9be28b ^

e087f6d4



6f662196 ^

e087f6d4
6f662196 ^

e087f6d4


6f662196 ^

e087f6d4
6f662196 ^

e087f6d4

97d3287a ^

e087f6d4


97d3287a ^

e087f6d4





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46











                                                                                             

                     



                                     

                                          
                                      

                                           


                            

                                 
                             

                                  

                               

                                  


                                           

                                         





                     
/*                                  Network News Transfer protocol module for the WWW library
                                          HTNEWS
                                             
 */
/* History:
**      26 Sep 90       Written TBL in Objective-C
**      29 Nov 91       Downgraded to C, for portable implementation.
*/

#ifndef HTNEWS_H
#define HTNEWS_H

#include <HTAccess.h>
#include <HTAnchor.h>

#ifdef GLOBALREF_IS_MACRO
extern GLOBALREF(HTProtocol, HTNews);
extern GLOBALREF(HTProtocol, HTNNTP);
extern GLOBALREF(HTProtocol, HTNewsPost);
extern GLOBALREF(HTProtocol, HTNewsReply);
extern GLOBALREF(HTProtocol, HTSNews);
extern GLOBALREF(HTProtocol, HTSNewsPost);
extern GLOBALREF(HTProtocol, HTSNewsReply);
#else
GLOBALREF HTProtocol HTNews;
GLOBALREF HTProtocol HTNNTP;
GLOBALREF HTProtocol HTNewsPost;
GLOBALREF HTProtocol HTNewsReply;
GLOBALREF HTProtocol HTSNews;
GLOBALREF HTProtocol HTSNewsPost;
GLOBALREF HTProtocol HTSNewsReply;
#endif /* GLOBALREF_IS_MACRO */

extern void HTSetNewsHost PARAMS((
	CONST char *	value));
extern CONST char * HTGetNewsHost NOPARAMS;
extern char * HTNewsHost;

extern void HTClearNNTPAuthInfo NOPARAMS;

#endif /* HTNEWS_H */


/*

   tbl */