~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to cmd-line-utils/libedit/filecomplete.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mto: (1.2.1) (37.1.1 lucid-security)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: package-import@ubuntu.com-20120222223355-ku1tb4r70osci6v2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      $NetBSD: filecomplete.h,v 1.6 2008/04/29 06:53:01 martin Exp $  */
 
1
/*      $NetBSD: filecomplete.h,v 1.9 2009/12/30 22:37:40 christos Exp $        */
2
2
 
3
3
/*-
4
4
 * Copyright (c) 1997 The NetBSD Foundation, Inc.
34
34
int fn_complete(EditLine *,
35
35
    char *(*)(const char *, int),
36
36
    char **(*)(const char *, int, int),
37
 
    const char *, const char *, const char *(*)(const char *), int,
 
37
    const Char *, const Char *, const char *(*)(const char *), size_t,
38
38
    int *, int *, int *, int *);
39
39
 
40
 
void fn_display_match_list(EditLine *, char **, int, int);
 
40
void fn_display_match_list(EditLine *, char **, size_t, size_t);
41
41
char *fn_tilde_expand(const char *);
42
42
char *fn_filename_completion_function(const char *, int);
43
43