[go: up one dir, main page]

File: upse-string.h

package info (click to toggle)
upse 0.6.0-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,016 kB
  • ctags: 966
  • sloc: ansic: 5,600; sh: 3,479; makefile: 91
file content (29 lines) | stat: -rw-r--r-- 762 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
/*
 * UPSE: the unix playstation sound emulator.
 *
 * Filename: upse-string.h
 * Purpose: libupse: string utility function header
 *
 * Copyright (c) 2007 William Pitcock <nenolod@sacredspiral.co.uk>
 *
 * UPSE is free software, released under the GNU General Public License,
 * version 2.
 *
 * A copy of the GNU General Public License, version 2, is included in
 * the UPSE source kit as COPYING.
 *
 * UPSE is offered without any warranty of any kind, explicit or implicit.
 */

#ifndef __UPSE__LIBUPSE__UPSE_STRING_H__GUARD
#define __UPSE__LIBUPSE__UPSE_STRING_H__GUARD

#include "upse.h"
#include "upse-string.h"

/*
 * fgets() wrapper - inefficient, but it will do.
 */
char *upse_io_fgets(char *s, int n, void *stream, upse_iofuncs_t * iofuncs);

#endif