comparison liboctave/oct-kpse.c @ 4242:4d3994172bd5

[project @ 2002-12-26 22:06:10 by jwe]
author jwe
date Thu, 26 Dec 2002 22:06:30 +0000
parents b10790694d48
children
comparison
equal deleted inserted replaced
4241:71209cc7ad4a 4242:4d3994172bd5
49 octave_kpse_all_path_search (const char *path, const char *name) 49 octave_kpse_all_path_search (const char *path, const char *name)
50 { 50 {
51 return kpse_all_path_search (path, name); 51 return kpse_all_path_search (path, name);
52 } 52 }
53 53
54 char *
55 octave_kpse_path_find_first_of (const char *path, const char **names,
56 int must_exist)
57 {
58 return kpse_path_find_first_of (path, names, must_exist);
59 }
60
61 char **
62 octave_kpse_all_path_find_first_of (const char *path, const char **names)
63 {
64 return kpse_all_path_find_first_of (path, names);
65 }
66
54 void 67 void
55 octave_kpse_set_progname (const char *name) 68 octave_kpse_set_progname (const char *name)
56 { 69 {
57 kpse_set_progname (name); 70 kpse_set_progname (name);
58 } 71 }