annotate liboctave/lo-cutils.h @ 13741:b0e70a71647b stable release-3-4-3

Version 3.4.3 released. * configure.ac (AC_INIT): Version number is now 3.4.3. (OCTAVE_RELEASE_DATE): Update to 2011-10-10.
author John W. Eaton <jwe@octave.org>
date Mon, 10 Oct 2011 10:23:45 -0400
parents e4e82740e9cd
children 72c96de7a403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11512
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 Copyright (C) 2011 John W. Eaton
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 option) any later version.
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 for more details.
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 #if !defined (octave_liboctave_cutils_h)
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 #define octave_liboctave_cutils_h 1
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 #ifdef HAVE_LOADLIBRARY_API
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 #define WIN32_LEAN_AND_MEAN
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 #include <windows.h>
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 #endif
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 #ifdef __cplusplus
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 extern "C" {
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 #endif
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 OCTAVE_API void
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 octave_qsort (void *base, size_t n, size_t size,
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 int (*cmp) (const void *, const void *));
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 OCTAVE_API int
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 octave_strcasecmp (const char *s1, const char *s2);
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 OCTAVE_API int
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 octave_strncasecmp (const char *s1, const char *s2, size_t n);
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 #ifdef HAVE_LOADLIBRARY_API
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 OCTAVE_API void *
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 octave_w32_library_search (HINSTANCE handle, const char *name);
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 #endif
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 OCTAVE_API pid_t
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 octave_waitpid (pid_t pid, int *status, int options);
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 #ifdef __cplusplus
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 }
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 #endif
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56
e4e82740e9cd prototype fixes for C language files
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 #endif