File: completion.h

package info (click to toggle)
yafc 0.7.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,376 kB
  • ctags: 1,681
  • sloc: ansic: 19,088; sh: 9,233; makefile: 141; perl: 38
file content (20 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* $Id: completion.h,v 1.4 2001/05/12 18:44:37 mhe Exp $
 *
 * completion.h -- readline completion functions
 *
 * Yet Another FTP Client
 * Copyright (C) 1998-2001, Martin Hedenfalk <mhe@stacken.kth.se>
 *
 * This program 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 2 of the License, or
 * (at your option) any later version. See COPYING for more details.
 */

#ifndef _COMPLETION_H_INCLUDED
#define _COMPLETION_H_INCLUDED

char **the_complete_function(char *text, int start, int end);
char *no_completion_function(char *text, int state);

#endif