File: database.h

package info (click to toggle)
workman 1.3.4-25
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,276 kB
  • ctags: 1,187
  • sloc: ansic: 14,630; makefile: 145; sh: 78
file content (34 lines) | stat: -rw-r--r-- 1,168 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
25
26
27
28
29
30
31
32
33
34
#ifndef DATABASE_H
#define DATABASE_H
/*
 * $Id: database.h,v 1.3.4.1 1999/01/15 08:47:35 dirk Exp $
 *
 * This file is part of WorkMan, the civilized CD player program
 * (c) 1991-1997 by Steven Grimm (original author)
 * (c) by Dirk Frsterling (current 'author' = maintainer)
 * The maintainer can be contacted by his e-mail address:
 * milliByte@DeathsDoor.com 
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * Prototypes for database.c
 * 
 * This is just one more step to a more modular and understandable code.
 */

void	split_workmandb( void );
void	strmcpy( char **t, char *s );
int	save( void );
void	load( void );
char   *WMstrdup( char *s );
void	load_settings( void );

#endif /* DATABASE_H */