Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • cont-frb/moberg-review
  • v0.9.20
  • v0.9.19
  • v0.9.18
  • v0.9.17
  • v0.9.16
  • v0.9.15
  • v0.9.14
  • v0.9.13
  • v0.9.12
  • v0.9.11
  • v0.9.10
  • v0.9.9
  • v0.9.8
  • v0.9.7
  • v0.9.6
  • v0.9.5
  • v0.9.4
  • v0.9.3
  • v0.9.2
  • v0.9.1
22 results

moberg_parser.h

Blame
  • Forked from Anders Blomdell / moberg
    67 commits behind the upstream repository.
    moberg_parser.h 1.04 KiB
    /*
        moberg_parser.h -- moberg parser interface
    
        Copyright (C) 2019 Anders Blomdell <anders.blomdell@gmail.com>
    
        This file is part of Moberg.
    
        Moberg is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.
    
        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.
    
        You should have received a copy of the GNU General Public License
        along with this program.  If not, see <https://www.gnu.org/licenses/>.
    */
        
    #ifndef __MOBERG_PARSER_H__
    #define __MOBERG_PARSER_H__
    
    #include <moberg.h>
    #include <moberg_config.h>
    
    struct moberg_parser_context;
    
    struct moberg_config *moberg_parse(struct moberg* moberg,
                                       const char *buf);
    
    #endif