(find_barrier): Set si_limit to 1018 instead of 1020, and
[official-gcc.git] / gcc / objc / NXConstStr.h
blob6899c74070b8f5e38872724a4b23c485023bfcf9
1 /* Interface for the NXConstantString class for Objective-C.
2 Copyright (C) 1995 Free Software Foundation, Inc.
3 Contributed by Pieter J. Schoenmakers <tiggr@es.ele.tue.nl>
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
12 GNU CC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #ifndef __nxconstantstring_INCLUDE_GNU
23 #define __nxconstantstring_INCLUDE_GNU
25 #include "objc/Object.h"
27 @interface NXConstantString: Object
29 char *c_string;
30 unsigned int len;
33 -(const char *) cString;
34 -(unsigned int) length;
36 @end
38 #endif