mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 16:09:18 +08:00
16 lines
219 B
C
16 lines
219 B
C
|
// java-props.h - Properties -*- c++ -*-
|
||
|
|
||
|
#ifndef __JAVA_PROPS_H__
|
||
|
#define __JAVA_PROPS_H__
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
char *key;
|
||
|
size_t key_length;
|
||
|
char *value;
|
||
|
size_t value_length;
|
||
|
} property_pair;
|
||
|
|
||
|
#endif
|
||
|
|