mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02: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
|
||
|
|
|