File: complete.h

package info (click to toggle)
mc 4.1.35-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,924 kB
  • ctags: 9,665
  • sloc: ansic: 84,273; tcl: 1,779; makefile: 1,266; sh: 864; perl: 262; awk: 148; sed: 93; csh: 1
file content (16 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __COMPLETE_H
#define __COMPLETE_H

#define INPUT_COMPLETE_FILENAMES	 1
#define INPUT_COMPLETE_HOSTNAMES	 2
#define INPUT_COMPLETE_COMMANDS		 4
#define INPUT_COMPLETE_VARIABLES	 8
#define INPUT_COMPLETE_USERNAMES	16
#define INPUT_COMPLETE_CD		32

typedef char *CompletionFunction (char *, int);

void free_completions (WInput *);
void complete (WInput *);

#endif	/* __COMPLETE_H */