File: file.h

package info (click to toggle)
apt-spy 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 344 kB
  • sloc: ansic: 1,067; makefile: 54; sh: 11
file content (17 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* apt-spy
 * (c) Steven Holmes, 2003.
 * This software is licensed as detailed in the COPYRIGHT file.
 */

#ifndef __FILE_H
#define __FILE_H

FILE *select_infile(char *infile);
FILE *select_outfile(char *outfile);
FILE *select_config(char *config_file);
FILE *select_mirror(char *mirror_list, int are_updating);
char *next_entry(FILE *infile_p);
int backup(char *orig_file);
int check_write_access(char *path);

#endif