Sha256: f484a32e27d3a9303c0d8d89e2cb18fe8b698373387ac245c29282592deaa8d9

Contents?: true

Size: 893 Bytes

Versions: 5

Compression:

Stored size: 893 Bytes

Contents

//
//  drafter_private.h
//  drafter
//
//  Created by Pavan Kumar Sunkara on 20/10/16.
//  Copyright © 2016 Apiary. All rights reserved.
//

//TODO: This should be merged with drafter.h in next major release
#ifndef DRAFTER_PRIVATE_H
#define DRAFTER_PRIVATE_H

#include "drafter.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    bool requireBlueprintName;
} drafter_parse_options;

DRAFTER_API int drafter_parse_blueprint_with_options(const char* source,
                                                     drafter_result** out,
                                                     const drafter_parse_options options);

DRAFTER_API drafter_result* drafter_check_blueprint_with_options(const char* source,
                                                                 const drafter_parse_options options);

#ifdef __cplusplus
}
#endif

#endif // #ifndef DRAFTER_PRIVATE_H

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lounge_lizard-0.1.4 ext/drafter/src/drafter_private.h
lounge_lizard-0.1.3 ext/drafter/src/drafter_private.h
lounge_lizard-0.1.2 ext/drafter/src/drafter_private.h
lounge_lizard-0.1.1 ext/drafter/src/drafter_private.h
lounge_lizard-0.1.0 ext/drafter/src/drafter_private.h