Mercurial > hg > octave-nkf
comparison src/utils.h @ 3350:729ad2b6a052
[project @ 1999-11-12 16:18:16 by jwe]
author | jwe |
---|---|
date | Fri, 12 Nov 1999 16:18:17 +0000 |
parents | 7ae1928ca623 |
children | 87721841efd7 |
comparison
equal
deleted
inserted
replaced
3349:a007eb407ff5 | 3350:729ad2b6a052 |
---|---|
36 extern string search_path_for_file (const string&, const string&); | 36 extern string search_path_for_file (const string&, const string&); |
37 extern string file_in_path (const string&, const string&); | 37 extern string file_in_path (const string&, const string&); |
38 extern string fcn_file_in_path (const string&); | 38 extern string fcn_file_in_path (const string&); |
39 extern string oct_file_in_path (const string&); | 39 extern string oct_file_in_path (const string&); |
40 | 40 |
41 extern "C" void jump_to_top_level (void) GCC_ATTR_NORETURN; | 41 extern void jump_to_top_level (void) GCC_ATTR_NORETURN; |
42 | 42 |
43 extern int almost_match (const string& std, const string& s, | 43 extern int almost_match (const string& std, const string& s, |
44 int min_match_len = 1, int case_sens = 1); | 44 int min_match_len = 1, int case_sens = 1); |
45 | 45 |
46 extern int | 46 extern int |
58 | 58 |
59 extern int check_preference (const string& var); | 59 extern int check_preference (const string& var); |
60 | 60 |
61 extern "C" void octave_usleep (unsigned int useconds); | 61 extern "C" void octave_usleep (unsigned int useconds); |
62 | 62 |
63 extern "C" int octave_strcasecmp (const char *s1, const char *s2); | |
64 | |
65 extern "C" int octave_strncasecmp (const char *s1, const char *s2, size_t n); | |
66 | |
63 #endif | 67 #endif |
64 | 68 |
65 /* | 69 /* |
66 ;;; Local Variables: *** | 70 ;;; Local Variables: *** |
67 ;;; mode: C++ *** | 71 ;;; mode: C++ *** |