~ubuntu-branches/ubuntu/karmic/gnustep-base/karmic

« back to all changes in this revision

Viewing changes to Source/GSFormat.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Heintzmann
  • Date: 2005-04-17 00:14:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050417001438-enf0y07c9tku85z1
Tags: 1.10.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GSFormat - printf-style formatting
 
2
    
 
3
   Copyright (C) 2000 Free Software Foundation, Inc.
 
4
 
 
5
   Written by:  Kai Henningsen <kai@cats.ms>
 
6
   Created: Jan 2001
 
7
 
 
8
   This file is part of the GNUstep Base Library.
 
9
 
 
10
   This library is free software; you can redistribute it and/or
 
11
   modify it under the terms of the GNU Library General Public
 
12
   License as published by the Free Software Foundation; either
 
13
   version 2 of the License, or (at your option) any later version.
 
14
   
 
15
   This library is distributed in the hope that it will be useful,
 
16
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
   Library General Public License for more details.
 
19
 
 
20
   You should have received a copy of the GNU Library General Public
 
21
   License along with this library; if not, write to the Free
 
22
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
 
23
*/
 
24
 
 
25
#ifndef __GSFormat_H_
 
26
#define __GSFormat_H_
 
27
 
 
28
#include        <Foundation/NSZone.h>
 
29
#include        "GSPrivate.h"
 
30
 
 
31
@class  NSDictionary;
 
32
 
 
33
void 
 
34
GSFormat(GSStr fb, const unichar *fmt, va_list ap, NSDictionary *loc);
 
35
 
 
36
#endif
 
37