File: artstruct.h

package info (click to toggle)
xrn 9.02-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,820 kB
  • ctags: 3,233
  • sloc: ansic: 24,690; makefile: 2,685; yacc: 888; sh: 252; lex: 92; perl: 35; awk: 31; csh: 13
file content (24 lines) | stat: -rw-r--r-- 1,106 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _ARTSTRUCT_H_
#define _ARTSTRUCT_H_

void		artListInit _ARGUMENTS((struct newsgroup *));
void		artListSet _ARGUMENTS((struct newsgroup *));
void		artListFree _ARGUMENTS((struct newsgroup *));
struct article *artStructGet _ARGUMENTS((struct newsgroup *, art_num, Boolean));
void		artStructSet _ARGUMENTS((struct newsgroup *, struct article **));
void		artStructReplace _ARGUMENTS((struct newsgroup *,
					     struct article **, struct article *,
					     art_num));
struct article *artStructNext _ARGUMENTS((struct newsgroup *, struct article *,
					  art_num *, art_num *));
struct article *artStructPrevious _ARGUMENTS((struct newsgroup *,
					      struct article *, art_num *,
					      art_num *));
struct article *artListFirst _ARGUMENTS((struct newsgroup *, art_num *, art_num *));
struct article *artListLast _ARGUMENTS((struct newsgroup *, art_num *, art_num *));

int		artStructNumChildren _ARGUMENTS((struct article *));
void		artStructAddChild _ARGUMENTS((struct article *, art_num));
void		artStructRemoveChild _ARGUMENTS((struct article *, art_num));

#endif /* _ARTSTRUCT_H_ */