~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/util.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#define UTIL_FILE_LOAD_FILL         2
41
41
 
42
42
extern char *util_concat(const char *s1, ...);
 
43
extern void util_addline(char **list, const char *line);
 
44
extern void util_addline_free(char **list, char *line);
43
45
extern BYTE *util_bufcat(BYTE *buf, int *buf_size, size_t *max_buf_size,
44
46
                         const BYTE *src, int src_size);
45
47
extern void util_remove_spaces(char *s);
46
48
extern void util_add_extension(char **name, const char *extension);
47
49
extern char *util_add_extension_const(const char *filename,
48
50
                                      const char *extension);
 
51
extern char *util_get_extension(char *filename);
49
52
 
50
53
extern size_t util_file_length(FILE *fd);
51
54
extern int util_file_exists(const char *name);
91
94
int strncasecmp(const char *s1, const char *s2, unsigned int n);
92
95
#endif
93
96
 
94
 
#endif /* UTILS_H */
 
97
#endif
95
98