Mercurial > hg > octave-lyh
annotate liboctave/lo-cutils.c @ 10396:a0b51ac0f88a
optimize accumdim with summation
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 05 Mar 2010 12:31:30 +0100 |
parents | 82db36545def |
children | aca961a3f387 |
rev | line source |
---|---|
3613 | 1 /* |
2 | |
7017 | 3 Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006, 2007 John W. Eaton |
3613 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
3613 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
3613 | 20 |
21 */ | |
22 | |
3803 | 23 /* |
24 | |
25 The function gethostname was adapted from a similar function from GNU | |
26 Bash, the Bourne Again SHell, copyright (C) 1987, 1989, 1991 Free | |
27 Software Foundation, Inc. | |
28 | |
29 */ | |
30 | |
3613 | 31 #ifdef HAVE_CONFIG_H |
32 #include <config.h> | |
33 #endif | |
34 | |
4290 | 35 /* This gives us a better chance of finding a prototype for strptime |
36 on some systems. */ | |
37 | |
38 #if ! defined (_XOPEN_SOURCE) | |
39 #define _XOPEN_SOURCE | |
40 #endif | |
41 | |
3803 | 42 #include <sys/types.h> |
43 #include <unistd.h> | |
44 | |
3613 | 45 #include <stdlib.h> |
3803 | 46 #include <string.h> |
3706 | 47 #include <time.h> |
3613 | 48 |
5453 | 49 #include "syswait.h" |
50 | |
6108 | 51 OCTAVE_API void |
3613 | 52 octave_qsort (void *base, size_t n, size_t size, |
10180 | 53 int (*cmp) (const void *, const void *)) |
3613 | 54 { |
55 qsort (base, n, size, cmp); | |
56 } | |
57 | |
6108 | 58 OCTAVE_API int |
6111 | 59 octave_strcasecmp (const char *s1, const char *s2) |
60 { | |
61 return strcasecmp (s1, s2); | |
62 } | |
63 | |
64 OCTAVE_API int | |
65 octave_strncasecmp (const char *s1, const char *s2, size_t n) | |
66 { | |
67 return strncasecmp (s1, s2, n); | |
68 } | |
69 | |
10174
eb64bf1c6107
use unlink module from gnulib
John W. Eaton <jwe@octave.org>
parents:
10173
diff
changeset
|
70 OCTAVE_API int |
3803 | 71 octave_gethostname (char *name, int namelen) |
72 { | |
73 return gethostname (name, namelen); | |
74 } | |
3707 | 75 |
5451 | 76 #ifdef HAVE_LOADLIBRARY_API |
77 #include <windows.h> | |
78 | |
79 /* Need this since in C++ can't cast from int(*)() to void* */ | |
6108 | 80 OCTAVE_API void * |
5453 | 81 octave_w32_library_search (HINSTANCE handle, const char * name) |
5451 | 82 { |
83 return (GetProcAddress (handle, name)); | |
84 } | |
85 #endif | |
86 | |
6108 | 87 OCTAVE_API pid_t |
5453 | 88 octave_waitpid (pid_t pid, int *status, int options) |
89 { | |
90 return WAITPID (pid, status, options); | |
91 } |