Mercurial > hg > octave-lyh
comparison src/utils.h @ 10086:76df75b10c80
allow more cells in strfind/strrep + supply a general mechanism
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 12 Jan 2010 09:03:42 +0100 |
parents | f349847c4541 |
children | cd96d29c5efa |
comparison
equal
deleted
inserted
replaced
10085:82d47b706424 | 10086:76df75b10c80 |
---|---|
124 extern "C" OCTINTERP_API void octave_usleep (unsigned int useconds); | 124 extern "C" OCTINTERP_API void octave_usleep (unsigned int useconds); |
125 | 125 |
126 extern "C" OCTINTERP_API int | 126 extern "C" OCTINTERP_API int |
127 octave_raw_vsnprintf (char *buf, size_t n, const char *fmt, va_list args); | 127 octave_raw_vsnprintf (char *buf, size_t n, const char *fmt, va_list args); |
128 | 128 |
129 extern OCTINTERP_API | |
130 octave_value_list | |
131 do_simple_cellfun (octave_value_list (*fun) (const octave_value_list&, int), | |
132 const char *fun_name, const octave_value_list& args, | |
133 int nargout); | |
134 | |
135 extern OCTINTERP_API | |
136 octave_value | |
137 do_simple_cellfun (octave_value_list (*fun) (const octave_value_list&, int), | |
138 const char *fun_name, const octave_value_list& args); | |
129 #endif | 139 #endif |
130 | 140 |
131 /* | 141 /* |
132 ;;; Local Variables: *** | 142 ;;; Local Variables: *** |
133 ;;; mode: C++ *** | 143 ;;; mode: C++ *** |