1*2b949d04SAndroid Build Coastguard Worker /************************************************************ 2*2b949d04SAndroid Build Coastguard Worker * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc. 3*2b949d04SAndroid Build Coastguard Worker * 4*2b949d04SAndroid Build Coastguard Worker * Permission to use, copy, modify, and distribute this 5*2b949d04SAndroid Build Coastguard Worker * software and its documentation for any purpose and without 6*2b949d04SAndroid Build Coastguard Worker * fee is hereby granted, provided that the above copyright 7*2b949d04SAndroid Build Coastguard Worker * notice appear in all copies and that both that copyright 8*2b949d04SAndroid Build Coastguard Worker * notice and this permission notice appear in supporting 9*2b949d04SAndroid Build Coastguard Worker * documentation, and that the name of Silicon Graphics not be 10*2b949d04SAndroid Build Coastguard Worker * used in advertising or publicity pertaining to distribution 11*2b949d04SAndroid Build Coastguard Worker * of the software without specific prior written permission. 12*2b949d04SAndroid Build Coastguard Worker * Silicon Graphics makes no representation about the suitability 13*2b949d04SAndroid Build Coastguard Worker * of this software for any purpose. It is provided "as is" 14*2b949d04SAndroid Build Coastguard Worker * without any express or implied warranty. 15*2b949d04SAndroid Build Coastguard Worker * 16*2b949d04SAndroid Build Coastguard Worker * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS 17*2b949d04SAndroid Build Coastguard Worker * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 18*2b949d04SAndroid Build Coastguard Worker * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON 19*2b949d04SAndroid Build Coastguard Worker * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 20*2b949d04SAndroid Build Coastguard Worker * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 21*2b949d04SAndroid Build Coastguard Worker * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 22*2b949d04SAndroid Build Coastguard Worker * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH 23*2b949d04SAndroid Build Coastguard Worker * THE USE OR PERFORMANCE OF THIS SOFTWARE. 24*2b949d04SAndroid Build Coastguard Worker * 25*2b949d04SAndroid Build Coastguard Worker ********************************************************/ 26*2b949d04SAndroid Build Coastguard Worker 27*2b949d04SAndroid Build Coastguard Worker #ifndef XKBCOMP_PARSER_PRIV_H 28*2b949d04SAndroid Build Coastguard Worker #define XKBCOMP_PARSER_PRIV_H 29*2b949d04SAndroid Build Coastguard Worker 30*2b949d04SAndroid Build Coastguard Worker struct parser_param; 31*2b949d04SAndroid Build Coastguard Worker struct scanner; 32*2b949d04SAndroid Build Coastguard Worker 33*2b949d04SAndroid Build Coastguard Worker #include "parser.h" 34*2b949d04SAndroid Build Coastguard Worker 35*2b949d04SAndroid Build Coastguard Worker int 36*2b949d04SAndroid Build Coastguard Worker _xkbcommon_lex(YYSTYPE *yylval, struct scanner *scanner); 37*2b949d04SAndroid Build Coastguard Worker 38*2b949d04SAndroid Build Coastguard Worker XkbFile * 39*2b949d04SAndroid Build Coastguard Worker parse(struct xkb_context *ctx, struct scanner *scanner, const char *map); 40*2b949d04SAndroid Build Coastguard Worker 41*2b949d04SAndroid Build Coastguard Worker int 42*2b949d04SAndroid Build Coastguard Worker keyword_to_token(const char *string, size_t len); 43*2b949d04SAndroid Build Coastguard Worker 44*2b949d04SAndroid Build Coastguard Worker #endif 45