OSDN Git Service

53ecb0990aed648a4c55feb1bf6e77e0c0a836f8
[pf3gnuchains/gcc-fork.git] / libjava / include / java-props.h
1 // java-props.h - Properties  -*- c++ -*-
2
3 /* Copyright (C) 1999  Cygnus Solutions
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 #ifndef __JAVA_PROPS_H__
12 #define __JAVA_PROPS_H__
13
14 typedef struct
15 {
16   char *key;
17   size_t      key_length;
18   char *value;
19   size_t      value_length;
20 } property_pair;
21
22 #endif
23