Sha256: 6f534a7489a1d91142dbf44e9476070b61e778f058ab2e5ea161c010b8a87b15

Contents?: true

Size: 521 Bytes

Versions: 4

Compression:

Stored size: 521 Bytes

Contents

/* hint.h
 * Copyright (c) 2011, Peter Ohler
 * All rights reserved.
 */

#ifndef __OX_HINT_H__
#define __OX_HINT_H__

typedef struct _Hint {
    const char	*name;
    char	empty;	// must be closed or close auto it, not error
    char	nest;	// nesting allowed
    const char	**parents;
} *Hint;

typedef struct _Hints {
    const char	*name;
    Hint	hints; // array of hints
    int		size;
} *Hints;

extern Hints	ox_hints_html(void);
extern Hint	ox_hint_find(Hints hints, const char *name);

#endif /* __OX_HINT_H__ */

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ox-2.2.0 ext/ox/sax_hint.h
ox-2.1.8 ext/ox/sax_hint.h
ox-2.1.7 ext/ox/sax_hint.h
ox-2.1.6 ext/ox/sax_hint.h