Sha256: 5ed4d5cc5c82c300529e152a24a40f4ddeb80dfc7a21eca317d978fc918ba572

Contents?: true

Size: 574 Bytes

Versions: 6

Compression:

Stored size: 574 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
    char	jump;	// jump to end <script> ... </script>
    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

6 entries across 6 versions & 1 rubygems

Version Path
ox-2.4.0 ext/ox/sax_hint.h
ox-2.3.0 ext/ox/sax_hint.h
ox-2.2.4 ext/ox/sax_hint.h
ox-2.2.3 ext/ox/sax_hint.h
ox-2.2.2 ext/ox/sax_hint.h
ox-2.2.1 ext/ox/sax_hint.h