File: book_make.h

package info (click to toggle)
polyglot 2.0.4%2Bgit20210322-1
  • links: PTS
  • area: main
  • in suites: bookworm, trixie
  • size: 1,284 kB
  • sloc: ansic: 10,443; sh: 3,711; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

// book_make.h

#ifndef BOOK_MAKE_H
#define BOOK_MAKE_H

// includes

#include "util.h"

// functions

extern void book_make (int argc, char * argv[]);
extern void book_dump (int argc, char * argv[]);
extern void book_info (int argc, char * argv[]);

#endif // !defined BOOK_MAKE_H

// end of book_make.h