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

« back to all changes in this revision

Viewing changes to Source/GSFormat.m

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-07-05 09:49:51 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705094951-gs19i3erqo2xx6if
Tags: 1.16.1-2ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  + debian/rules:
    - Add lpia to ALL_ARCHS supported architectures.
  + debian/control:
    - Add lpia architecture where needed.
  + debian/control{,.m4}:
    - Update Maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
   This library is free software; you can redistribute it and/or
26
26
   modify it under the terms of the GNU Lesser General Public
27
27
   License as published by the Free Software Foundation; either
28
 
   version 3 of the License, or (at your option) any later version.
 
28
   version 2 of the License, or (at your option) any later version.
29
29
 
30
30
   This library is distributed in the hope that it will be useful,
31
31
   but WITHOUT ANY WARRANTY; without even the implied warranty of
48
48
#ifdef HAVE_STDINT_H
49
49
#include <stdint.h>
50
50
#endif
 
51
#ifdef HAVE_ALLOCA_H
 
52
#include <alloca.h>
 
53
#endif
51
54
#include <limits.h>
52
55
 
53
56
#include <stdio.h>
54
57
#include <string.h>
55
 
#include "GNUstepBase/preface.h"
56
 
#include "Foundation/NSString.h"
57
 
#include "Foundation/NSArray.h"
58
 
#include "Foundation/NSCharacterSet.h"
59
 
#include "Foundation/NSException.h"
60
 
#include "Foundation/NSValue.h"
61
 
#include "Foundation/NSDictionary.h"
62
 
#include "Foundation/NSUserDefaults.h"
63
 
#include "Foundation/NSFileManager.h"
64
 
#include "Foundation/NSPortCoder.h"
65
 
#include "Foundation/NSPathUtilities.h"
66
 
#include "Foundation/NSRange.h"
67
 
#include "Foundation/NSException.h"
68
 
#include "Foundation/NSData.h"
69
 
#include "Foundation/NSBundle.h"
70
 
#include "Foundation/NSURL.h"
71
 
#include "Foundation/NSMapTable.h"
72
 
#include "Foundation/NSLock.h"
73
 
#include "Foundation/NSZone.h"
74
 
#include "Foundation/NSDebug.h"
75
 
#include "GNUstepBase/GSLocale.h"
76
 
 
77
 
#include "GSPrivate.h"
 
58
 
 
59
#import "GNUstepBase/preface.h"
 
60
#import "Foundation/NSString.h"
 
61
#import "Foundation/NSArray.h"
 
62
#import "Foundation/NSCharacterSet.h"
 
63
#import "Foundation/NSException.h"
 
64
#import "Foundation/NSValue.h"
 
65
#import "Foundation/NSDictionary.h"
 
66
#import "Foundation/NSEnumerator.h"
 
67
#import "Foundation/NSUserDefaults.h"
 
68
#import "Foundation/NSFileManager.h"
 
69
#import "Foundation/NSPortCoder.h"
 
70
#import "Foundation/NSPathUtilities.h"
 
71
#import "Foundation/NSRange.h"
 
72
#import "Foundation/NSException.h"
 
73
#import "Foundation/NSData.h"
 
74
#import "Foundation/NSBundle.h"
 
75
#import "Foundation/NSURL.h"
 
76
#import "Foundation/NSMapTable.h"
 
77
#import "Foundation/NSLock.h"
 
78
#import "Foundation/NSZone.h"
 
79
#import "Foundation/NSDebug.h"
 
80
#import "GNUstepBase/GSLocale.h"
 
81
 
 
82
#import "GSPrivate.h"
78
83
 
79
84
#include <string.h>             // for strstr()
80
85
#include <sys/stat.h>