~ubuntu-branches/ubuntu/feisty/photoprint/feisty

« back to all changes in this revision

Viewing changes to util.h

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2006-09-29 12:18:16 UTC
  • Revision ID: james.westby@ubuntu.com-20060929121816-6t2iz9zaymixd3om
Tags: upstream-0.3.3
ImportĀ upstreamĀ versionĀ 0.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * util.h
 
3
 * Provides miscellaneous utility functions
 
4
 *
 
5
 * Copyright (c) 2004 by Alastair M. Robinson
 
6
 * Distributed under the terms of the GNU General Public License -
 
7
 * see the file named "COPYING" for more details.
 
8
 *
 
9
 */
 
10
 
 
11
#ifndef UTIL_H
 
12
#define UTIL_H
 
13
 
 
14
bool CheckSettingsDir(const char *dirname);
 
15
char *BuildAbsoluteFilename(const char *fname);
 
16
char *SerialiseFilename(const char *fname,int serialno,int max=0);
 
17
int TestHostName(char *str,char **hostname,int *port);
 
18
 
 
19
#endif