198944Sobrien/* Header for GDB line completion.
298944Sobrien   Copyright 2000 Free Software Foundation, Inc.
398944Sobrien
498944Sobrien   This program is free software; you can redistribute it and/or modify
598944Sobrien   it under the terms of the GNU General Public License as published by
698944Sobrien   the Free Software Foundation; either version 2 of the License, or
798944Sobrien   (at your option) any later version.
898944Sobrien
998944Sobrien   This program is distributed in the hope that it will be useful,
1098944Sobrien   but WITHOUT ANY WARRANTY; without even the implied warranty of
1198944Sobrien   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1298944Sobrien   GNU General Public License for more details.
1398944Sobrien
1498944Sobrien   You should have received a copy of the GNU General Public License
1598944Sobrien   along with this program; if not, write to the Free Software
1698944Sobrien   Foundation, Inc., 59 Temple Place - Suite 330,
1798944Sobrien   Boston, MA 02111-1307, USA.  */
1898944Sobrien
1998944Sobrien#if !defined (LINESPEC_H)
2098944Sobrien#define LINESPEC_H 1
2198944Sobrien
22130803Smarcelstruct symtab;
23130803Smarcel
2498944Sobrienextern struct symtabs_and_lines
2598944Sobrien	decode_line_1 (char **argptr, int funfirstline,
2698944Sobrien		       struct symtab *default_symtab, int default_line,
27130803Smarcel		       char ***canonical, int *not_found_ptr);
2898944Sobrien
2998944Sobrien#endif /* defined (LINESPEC_H) */
30