to match g_strcasecmp, check if it is lower/upper before converting to
[platform/upstream/glib.git] / glib / gstrfuncs.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 /*
28  * MT safe
29  */
30
31 #ifdef HAVE_CONFIG_H
32 #include <config.h>
33 #endif
34
35 #define _GNU_SOURCE             /* For stpcpy */
36
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <locale.h>
42 #include <ctype.h>              /* For tolower() */
43 #if !defined (HAVE_STRSIGNAL) || !defined(NO_SYS_SIGLIST_DECL)
44 #include <signal.h>
45 #endif
46 #include "glib.h"
47
48 #ifdef G_OS_WIN32
49 #include <windows.h>
50 #endif
51
52 /* do not include <unistd.h> in this place since it
53  * inteferes with g_strsignal() on some OSes
54  */
55
56 gchar*
57 g_strdup (const gchar *str)
58 {
59   gchar *new_str;
60
61   if (str)
62     {
63       new_str = g_new (char, strlen (str) + 1);
64       strcpy (new_str, str);
65     }
66   else
67     new_str = NULL;
68
69   return new_str;
70 }
71
72 gpointer
73 g_memdup (gconstpointer mem,
74           guint         byte_size)
75 {
76   gpointer new_mem;
77
78   if (mem)
79     {
80       new_mem = g_malloc (byte_size);
81       memcpy (new_mem, mem, byte_size);
82     }
83   else
84     new_mem = NULL;
85
86   return new_mem;
87 }
88
89 gchar*
90 g_strndup (const gchar *str,
91            guint        n)
92 {
93   gchar *new_str;
94
95   if (str)
96     {
97       new_str = g_new (gchar, n + 1);
98       strncpy (new_str, str, n);
99       new_str[n] = '\0';
100     }
101   else
102     new_str = NULL;
103
104   return new_str;
105 }
106
107 gchar*
108 g_strnfill (guint length,
109             gchar fill_char)
110 {
111   register gchar *str, *s, *end;
112
113   str = g_new (gchar, length + 1);
114   s = str;
115   end = str + length;
116   while (s < end)
117     *(s++) = fill_char;
118   *s = 0;
119
120   return str;
121 }
122
123 /**
124  * g_stpcpy:
125  * @dest: destination buffer
126  * @src: source string
127  * 
128  * Copies a nul-terminated string into the dest buffer, include the
129  * trailing nul, and return a pointer to the trailing nul byte.
130  * This is useful for concatenating multiple strings together
131  * without having to repeatedly scan for the end.
132  * 
133  * Return value: a pointer to trailing nul byte.
134  **/
135 gchar *
136 g_stpcpy (gchar       *dest,
137           const gchar *src)
138 {
139 #ifdef HAVE_STPCPY
140   g_return_val_if_fail (dest != NULL, NULL);
141   g_return_val_if_fail (src != NULL, NULL);
142   return stpcpy (dest, src);
143 #else
144   register gchar *d = dest;
145   register const gchar *s = src;
146
147   g_return_val_if_fail (dest != NULL, NULL);
148   g_return_val_if_fail (src != NULL, NULL);
149   do
150     *d++ = *s;
151   while (*s++ != '\0');
152
153   return d - 1;
154 #endif
155 }
156
157 gchar*
158 g_strdup_vprintf (const gchar *format,
159                   va_list      args1)
160 {
161   gchar *buffer;
162   va_list args2;
163
164   G_VA_COPY (args2, args1);
165
166   buffer = g_new (gchar, g_printf_string_upper_bound (format, args1));
167
168   vsprintf (buffer, format, args2);
169   va_end (args2);
170
171   return buffer;
172 }
173
174 gchar*
175 g_strdup_printf (const gchar *format,
176                  ...)
177 {
178   gchar *buffer;
179   va_list args;
180
181   va_start (args, format);
182   buffer = g_strdup_vprintf (format, args);
183   va_end (args);
184
185   return buffer;
186 }
187
188 gchar*
189 g_strconcat (const gchar *string1, ...)
190 {
191   guint   l;
192   va_list args;
193   gchar   *s;
194   gchar   *concat;
195   gchar   *ptr;
196
197   g_return_val_if_fail (string1 != NULL, NULL);
198
199   l = 1 + strlen (string1);
200   va_start (args, string1);
201   s = va_arg (args, gchar*);
202   while (s)
203     {
204       l += strlen (s);
205       s = va_arg (args, gchar*);
206     }
207   va_end (args);
208
209   concat = g_new (gchar, l);
210   ptr = concat;
211
212   ptr = g_stpcpy (ptr, string1);
213   va_start (args, string1);
214   s = va_arg (args, gchar*);
215   while (s)
216     {
217       strcat (concat, s);
218       s = va_arg (args, gchar*);
219     }
220   va_end (args);
221
222   return concat;
223 }
224
225 gdouble
226 g_strtod (const gchar *nptr,
227           gchar **endptr)
228 {
229   gchar *fail_pos_1;
230   gchar *fail_pos_2;
231   gdouble val_1;
232   gdouble val_2 = 0;
233
234   g_return_val_if_fail (nptr != NULL, 0);
235
236   fail_pos_1 = NULL;
237   fail_pos_2 = NULL;
238
239   val_1 = strtod (nptr, &fail_pos_1);
240
241   if (fail_pos_1 && fail_pos_1[0] != 0)
242     {
243       gchar *old_locale;
244
245       old_locale = g_strdup (setlocale (LC_NUMERIC, NULL));
246       setlocale (LC_NUMERIC, "C");
247       val_2 = strtod (nptr, &fail_pos_2);
248       setlocale (LC_NUMERIC, old_locale);
249       g_free (old_locale);
250     }
251
252   if (!fail_pos_1 || fail_pos_1[0] == 0 || fail_pos_1 >= fail_pos_2)
253     {
254       if (endptr)
255         *endptr = fail_pos_1;
256       return val_1;
257     }
258   else
259     {
260       if (endptr)
261         *endptr = fail_pos_2;
262       return val_2;
263     }
264 }
265
266 G_CONST_RETURN gchar*
267 g_strerror (gint errnum)
268 {
269   static GStaticPrivate msg_private = G_STATIC_PRIVATE_INIT;
270   char *msg;
271
272 #ifdef HAVE_STRERROR
273   return strerror (errnum);
274 #elif NO_SYS_ERRLIST
275   switch (errnum)
276     {
277 #ifdef E2BIG
278     case E2BIG: return "argument list too long";
279 #endif
280 #ifdef EACCES
281     case EACCES: return "permission denied";
282 #endif
283 #ifdef EADDRINUSE
284     case EADDRINUSE: return "address already in use";
285 #endif
286 #ifdef EADDRNOTAVAIL
287     case EADDRNOTAVAIL: return "can't assign requested address";
288 #endif
289 #ifdef EADV
290     case EADV: return "advertise error";
291 #endif
292 #ifdef EAFNOSUPPORT
293     case EAFNOSUPPORT: return "address family not supported by protocol family";
294 #endif
295 #ifdef EAGAIN
296     case EAGAIN: return "try again";
297 #endif
298 #ifdef EALIGN
299     case EALIGN: return "EALIGN";
300 #endif
301 #ifdef EALREADY
302     case EALREADY: return "operation already in progress";
303 #endif
304 #ifdef EBADE
305     case EBADE: return "bad exchange descriptor";
306 #endif
307 #ifdef EBADF
308     case EBADF: return "bad file number";
309 #endif
310 #ifdef EBADFD
311     case EBADFD: return "file descriptor in bad state";
312 #endif
313 #ifdef EBADMSG
314     case EBADMSG: return "not a data message";
315 #endif
316 #ifdef EBADR
317     case EBADR: return "bad request descriptor";
318 #endif
319 #ifdef EBADRPC
320     case EBADRPC: return "RPC structure is bad";
321 #endif
322 #ifdef EBADRQC
323     case EBADRQC: return "bad request code";
324 #endif
325 #ifdef EBADSLT
326     case EBADSLT: return "invalid slot";
327 #endif
328 #ifdef EBFONT
329     case EBFONT: return "bad font file format";
330 #endif
331 #ifdef EBUSY
332     case EBUSY: return "mount device busy";
333 #endif
334 #ifdef ECHILD
335     case ECHILD: return "no children";
336 #endif
337 #ifdef ECHRNG
338     case ECHRNG: return "channel number out of range";
339 #endif
340 #ifdef ECOMM
341     case ECOMM: return "communication error on send";
342 #endif
343 #ifdef ECONNABORTED
344     case ECONNABORTED: return "software caused connection abort";
345 #endif
346 #ifdef ECONNREFUSED
347     case ECONNREFUSED: return "connection refused";
348 #endif
349 #ifdef ECONNRESET
350     case ECONNRESET: return "connection reset by peer";
351 #endif
352 #if defined(EDEADLK) && (!defined(EWOULDBLOCK) || (EDEADLK != EWOULDBLOCK))
353     case EDEADLK: return "resource deadlock avoided";
354 #endif
355 #ifdef EDEADLOCK
356     case EDEADLOCK: return "resource deadlock avoided";
357 #endif
358 #ifdef EDESTADDRREQ
359     case EDESTADDRREQ: return "destination address required";
360 #endif
361 #ifdef EDIRTY
362     case EDIRTY: return "mounting a dirty fs w/o force";
363 #endif
364 #ifdef EDOM
365     case EDOM: return "math argument out of range";
366 #endif
367 #ifdef EDOTDOT
368     case EDOTDOT: return "cross mount point";
369 #endif
370 #ifdef EDQUOT
371     case EDQUOT: return "disk quota exceeded";
372 #endif
373 #ifdef EDUPPKG
374     case EDUPPKG: return "duplicate package name";
375 #endif
376 #ifdef EEXIST
377     case EEXIST: return "file already exists";
378 #endif
379 #ifdef EFAULT
380     case EFAULT: return "bad address in system call argument";
381 #endif
382 #ifdef EFBIG
383     case EFBIG: return "file too large";
384 #endif
385 #ifdef EHOSTDOWN
386     case EHOSTDOWN: return "host is down";
387 #endif
388 #ifdef EHOSTUNREACH
389     case EHOSTUNREACH: return "host is unreachable";
390 #endif
391 #ifdef EIDRM
392     case EIDRM: return "identifier removed";
393 #endif
394 #ifdef EINIT
395     case EINIT: return "initialization error";
396 #endif
397 #ifdef EINPROGRESS
398     case EINPROGRESS: return "operation now in progress";
399 #endif
400 #ifdef EINTR
401     case EINTR: return "interrupted system call";
402 #endif
403 #ifdef EINVAL
404     case EINVAL: return "invalid argument";
405 #endif
406 #ifdef EIO
407     case EIO: return "I/O error";
408 #endif
409 #ifdef EISCONN
410     case EISCONN: return "socket is already connected";
411 #endif
412 #ifdef EISDIR
413     case EISDIR: return "illegal operation on a directory";
414 #endif
415 #ifdef EISNAME
416     case EISNAM: return "is a name file";
417 #endif
418 #ifdef ELBIN
419     case ELBIN: return "ELBIN";
420 #endif
421 #ifdef EL2HLT
422     case EL2HLT: return "level 2 halted";
423 #endif
424 #ifdef EL2NSYNC
425     case EL2NSYNC: return "level 2 not synchronized";
426 #endif
427 #ifdef EL3HLT
428     case EL3HLT: return "level 3 halted";
429 #endif
430 #ifdef EL3RST
431     case EL3RST: return "level 3 reset";
432 #endif
433 #ifdef ELIBACC
434     case ELIBACC: return "can not access a needed shared library";
435 #endif
436 #ifdef ELIBBAD
437     case ELIBBAD: return "accessing a corrupted shared library";
438 #endif
439 #ifdef ELIBEXEC
440     case ELIBEXEC: return "can not exec a shared library directly";
441 #endif
442 #ifdef ELIBMAX
443     case ELIBMAX: return "attempting to link in more shared libraries than system limit";
444 #endif
445 #ifdef ELIBSCN
446     case ELIBSCN: return ".lib section in a.out corrupted";
447 #endif
448 #ifdef ELNRNG
449     case ELNRNG: return "link number out of range";
450 #endif
451 #ifdef ELOOP
452     case ELOOP: return "too many levels of symbolic links";
453 #endif
454 #ifdef EMFILE
455     case EMFILE: return "too many open files";
456 #endif
457 #ifdef EMLINK
458     case EMLINK: return "too many links";
459 #endif
460 #ifdef EMSGSIZE
461     case EMSGSIZE: return "message too long";
462 #endif
463 #ifdef EMULTIHOP
464     case EMULTIHOP: return "multihop attempted";
465 #endif
466 #ifdef ENAMETOOLONG
467     case ENAMETOOLONG: return "file name too long";
468 #endif
469 #ifdef ENAVAIL
470     case ENAVAIL: return "not available";
471 #endif
472 #ifdef ENET
473     case ENET: return "ENET";
474 #endif
475 #ifdef ENETDOWN
476     case ENETDOWN: return "network is down";
477 #endif
478 #ifdef ENETRESET
479     case ENETRESET: return "network dropped connection on reset";
480 #endif
481 #ifdef ENETUNREACH
482     case ENETUNREACH: return "network is unreachable";
483 #endif
484 #ifdef ENFILE
485     case ENFILE: return "file table overflow";
486 #endif
487 #ifdef ENOANO
488     case ENOANO: return "anode table overflow";
489 #endif
490 #if defined(ENOBUFS) && (!defined(ENOSR) || (ENOBUFS != ENOSR))
491     case ENOBUFS: return "no buffer space available";
492 #endif
493 #ifdef ENOCSI
494     case ENOCSI: return "no CSI structure available";
495 #endif
496 #ifdef ENODATA
497     case ENODATA: return "no data available";
498 #endif
499 #ifdef ENODEV
500     case ENODEV: return "no such device";
501 #endif
502 #ifdef ENOENT
503     case ENOENT: return "no such file or directory";
504 #endif
505 #ifdef ENOEXEC
506     case ENOEXEC: return "exec format error";
507 #endif
508 #ifdef ENOLCK
509     case ENOLCK: return "no locks available";
510 #endif
511 #ifdef ENOLINK
512     case ENOLINK: return "link has be severed";
513 #endif
514 #ifdef ENOMEM
515     case ENOMEM: return "not enough memory";
516 #endif
517 #ifdef ENOMSG
518     case ENOMSG: return "no message of desired type";
519 #endif
520 #ifdef ENONET
521     case ENONET: return "machine is not on the network";
522 #endif
523 #ifdef ENOPKG
524     case ENOPKG: return "package not installed";
525 #endif
526 #ifdef ENOPROTOOPT
527     case ENOPROTOOPT: return "bad proocol option";
528 #endif
529 #ifdef ENOSPC
530     case ENOSPC: return "no space left on device";
531 #endif
532 #ifdef ENOSR
533     case ENOSR: return "out of stream resources";
534 #endif
535 #ifdef ENOSTR
536     case ENOSTR: return "not a stream device";
537 #endif
538 #ifdef ENOSYM
539     case ENOSYM: return "unresolved symbol name";
540 #endif
541 #ifdef ENOSYS
542     case ENOSYS: return "function not implemented";
543 #endif
544 #ifdef ENOTBLK
545     case ENOTBLK: return "block device required";
546 #endif
547 #ifdef ENOTCONN
548     case ENOTCONN: return "socket is not connected";
549 #endif
550 #ifdef ENOTDIR
551     case ENOTDIR: return "not a directory";
552 #endif
553 #ifdef ENOTEMPTY
554     case ENOTEMPTY: return "directory not empty";
555 #endif
556 #ifdef ENOTNAM
557     case ENOTNAM: return "not a name file";
558 #endif
559 #ifdef ENOTSOCK
560     case ENOTSOCK: return "socket operation on non-socket";
561 #endif
562 #ifdef ENOTTY
563     case ENOTTY: return "inappropriate device for ioctl";
564 #endif
565 #ifdef ENOTUNIQ
566     case ENOTUNIQ: return "name not unique on network";
567 #endif
568 #ifdef ENXIO
569     case ENXIO: return "no such device or address";
570 #endif
571 #ifdef EOPNOTSUPP
572     case EOPNOTSUPP: return "operation not supported on socket";
573 #endif
574 #ifdef EPERM
575     case EPERM: return "not owner";
576 #endif
577 #ifdef EPFNOSUPPORT
578     case EPFNOSUPPORT: return "protocol family not supported";
579 #endif
580 #ifdef EPIPE
581     case EPIPE: return "broken pipe";
582 #endif
583 #ifdef EPROCLIM
584     case EPROCLIM: return "too many processes";
585 #endif
586 #ifdef EPROCUNAVAIL
587     case EPROCUNAVAIL: return "bad procedure for program";
588 #endif
589 #ifdef EPROGMISMATCH
590     case EPROGMISMATCH: return "program version wrong";
591 #endif
592 #ifdef EPROGUNAVAIL
593     case EPROGUNAVAIL: return "RPC program not available";
594 #endif
595 #ifdef EPROTO
596     case EPROTO: return "protocol error";
597 #endif
598 #ifdef EPROTONOSUPPORT
599     case EPROTONOSUPPORT: return "protocol not suppored";
600 #endif
601 #ifdef EPROTOTYPE
602     case EPROTOTYPE: return "protocol wrong type for socket";
603 #endif
604 #ifdef ERANGE
605     case ERANGE: return "math result unrepresentable";
606 #endif
607 #if defined(EREFUSED) && (!defined(ECONNREFUSED) || (EREFUSED != ECONNREFUSED))
608     case EREFUSED: return "EREFUSED";
609 #endif
610 #ifdef EREMCHG
611     case EREMCHG: return "remote address changed";
612 #endif
613 #ifdef EREMDEV
614     case EREMDEV: return "remote device";
615 #endif
616 #ifdef EREMOTE
617     case EREMOTE: return "pathname hit remote file system";
618 #endif
619 #ifdef EREMOTEIO
620     case EREMOTEIO: return "remote i/o error";
621 #endif
622 #ifdef EREMOTERELEASE
623     case EREMOTERELEASE: return "EREMOTERELEASE";
624 #endif
625 #ifdef EROFS
626     case EROFS: return "read-only file system";
627 #endif
628 #ifdef ERPCMISMATCH
629     case ERPCMISMATCH: return "RPC version is wrong";
630 #endif
631 #ifdef ERREMOTE
632     case ERREMOTE: return "object is remote";
633 #endif
634 #ifdef ESHUTDOWN
635     case ESHUTDOWN: return "can't send afer socket shutdown";
636 #endif
637 #ifdef ESOCKTNOSUPPORT
638     case ESOCKTNOSUPPORT: return "socket type not supported";
639 #endif
640 #ifdef ESPIPE
641     case ESPIPE: return "invalid seek";
642 #endif
643 #ifdef ESRCH
644     case ESRCH: return "no such process";
645 #endif
646 #ifdef ESRMNT
647     case ESRMNT: return "srmount error";
648 #endif
649 #ifdef ESTALE
650     case ESTALE: return "stale remote file handle";
651 #endif
652 #ifdef ESUCCESS
653     case ESUCCESS: return "Error 0";
654 #endif
655 #ifdef ETIME
656     case ETIME: return "timer expired";
657 #endif
658 #ifdef ETIMEDOUT
659     case ETIMEDOUT: return "connection timed out";
660 #endif
661 #ifdef ETOOMANYREFS
662     case ETOOMANYREFS: return "too many references: can't splice";
663 #endif
664 #ifdef ETXTBSY
665     case ETXTBSY: return "text file or pseudo-device busy";
666 #endif
667 #ifdef EUCLEAN
668     case EUCLEAN: return "structure needs cleaning";
669 #endif
670 #ifdef EUNATCH
671     case EUNATCH: return "protocol driver not attached";
672 #endif
673 #ifdef EUSERS
674     case EUSERS: return "too many users";
675 #endif
676 #ifdef EVERSION
677     case EVERSION: return "version mismatch";
678 #endif
679 #if defined(EWOULDBLOCK) && (!defined(EAGAIN) || (EWOULDBLOCK != EAGAIN))
680     case EWOULDBLOCK: return "operation would block";
681 #endif
682 #ifdef EXDEV
683     case EXDEV: return "cross-domain link";
684 #endif
685 #ifdef EXFULL
686     case EXFULL: return "message tables full";
687 #endif
688     }
689 #else /* NO_SYS_ERRLIST */
690   extern int sys_nerr;
691   extern char *sys_errlist[];
692
693   if ((errnum > 0) && (errnum <= sys_nerr))
694     return sys_errlist [errnum];
695 #endif /* NO_SYS_ERRLIST */
696
697   msg = g_static_private_get (&msg_private);
698   if (!msg)
699     {
700       msg = g_new (gchar, 64);
701       g_static_private_set (&msg_private, msg, g_free);
702     }
703
704   sprintf (msg, "unknown error (%d)", errnum);
705
706   return msg;
707 }
708
709 G_CONST_RETURN gchar*
710 g_strsignal (gint signum)
711 {
712   static GStaticPrivate msg_private = G_STATIC_PRIVATE_INIT;
713   char *msg;
714
715 #ifdef HAVE_STRSIGNAL
716 #if defined(G_OS_BEOS) || defined(G_WITH_CYGWIN)
717 extern const char *strsignal(int);
718 #else
719   /* this is declared differently (const) in string.h on BeOS */
720   extern char *strsignal (int sig);
721 #endif /* !G_OS_BEOS && !G_WITH_CYGWIN */
722   return strsignal (signum);
723 #elif NO_SYS_SIGLIST
724   switch (signum)
725     {
726 #ifdef SIGHUP
727     case SIGHUP: return "Hangup";
728 #endif
729 #ifdef SIGINT
730     case SIGINT: return "Interrupt";
731 #endif
732 #ifdef SIGQUIT
733     case SIGQUIT: return "Quit";
734 #endif
735 #ifdef SIGILL
736     case SIGILL: return "Illegal instruction";
737 #endif
738 #ifdef SIGTRAP
739     case SIGTRAP: return "Trace/breakpoint trap";
740 #endif
741 #ifdef SIGABRT
742     case SIGABRT: return "IOT trap/Abort";
743 #endif
744 #ifdef SIGBUS
745     case SIGBUS: return "Bus error";
746 #endif
747 #ifdef SIGFPE
748     case SIGFPE: return "Floating point exception";
749 #endif
750 #ifdef SIGKILL
751     case SIGKILL: return "Killed";
752 #endif
753 #ifdef SIGUSR1
754     case SIGUSR1: return "User defined signal 1";
755 #endif
756 #ifdef SIGSEGV
757     case SIGSEGV: return "Segmentation fault";
758 #endif
759 #ifdef SIGUSR2
760     case SIGUSR2: return "User defined signal 2";
761 #endif
762 #ifdef SIGPIPE
763     case SIGPIPE: return "Broken pipe";
764 #endif
765 #ifdef SIGALRM
766     case SIGALRM: return "Alarm clock";
767 #endif
768 #ifdef SIGTERM
769     case SIGTERM: return "Terminated";
770 #endif
771 #ifdef SIGSTKFLT
772     case SIGSTKFLT: return "Stack fault";
773 #endif
774 #ifdef SIGCHLD
775     case SIGCHLD: return "Child exited";
776 #endif
777 #ifdef SIGCONT
778     case SIGCONT: return "Continued";
779 #endif
780 #ifdef SIGSTOP
781     case SIGSTOP: return "Stopped (signal)";
782 #endif
783 #ifdef SIGTSTP
784     case SIGTSTP: return "Stopped";
785 #endif
786 #ifdef SIGTTIN
787     case SIGTTIN: return "Stopped (tty input)";
788 #endif
789 #ifdef SIGTTOU
790     case SIGTTOU: return "Stopped (tty output)";
791 #endif
792 #ifdef SIGURG
793     case SIGURG: return "Urgent condition";
794 #endif
795 #ifdef SIGXCPU
796     case SIGXCPU: return "CPU time limit exceeded";
797 #endif
798 #ifdef SIGXFSZ
799     case SIGXFSZ: return "File size limit exceeded";
800 #endif
801 #ifdef SIGVTALRM
802     case SIGVTALRM: return "Virtual time alarm";
803 #endif
804 #ifdef SIGPROF
805     case SIGPROF: return "Profile signal";
806 #endif
807 #ifdef SIGWINCH
808     case SIGWINCH: return "Window size changed";
809 #endif
810 #ifdef SIGIO
811     case SIGIO: return "Possible I/O";
812 #endif
813 #ifdef SIGPWR
814     case SIGPWR: return "Power failure";
815 #endif
816 #ifdef SIGUNUSED
817     case SIGUNUSED: return "Unused signal";
818 #endif
819     }
820 #else /* NO_SYS_SIGLIST */
821
822 #ifdef NO_SYS_SIGLIST_DECL
823   extern char *sys_siglist[];   /*(see Tue Jan 19 00:44:24 1999 in changelog)*/
824 #endif
825
826   return (char*) /* this function should return const --josh */ sys_siglist [signum];
827 #endif /* NO_SYS_SIGLIST */
828
829   msg = g_static_private_get (&msg_private);
830   if (!msg)
831     {
832       msg = g_new (gchar, 64);
833       g_static_private_set (&msg_private, msg, g_free);
834     }
835
836   sprintf (msg, "unknown signal (%d)", signum);
837   
838   return msg;
839 }
840
841 /* Functions g_strlcpy and g_strlcat were originally developed by
842  * Todd C. Miller <Todd.Miller@courtesan.com> to simplify writing secure code.
843  * See ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
844  * for more information.
845  */
846
847 #ifdef HAVE_STRLCPY
848 /* Use the native ones, if available; they might be implemented in assembly */
849 gsize
850 g_strlcpy (gchar       *dest,
851            const gchar *src,
852            gsize        dest_size)
853 {
854   g_return_val_if_fail (dest != NULL, 0);
855   g_return_val_if_fail (src  != NULL, 0);
856   
857   return strlcpy (dest, src, dest_size);
858 }
859
860 gsize
861 g_strlcat (gchar       *dest,
862            const gchar *src,
863            gsize        dest_size)
864 {
865   g_return_val_if_fail (dest != NULL, 0);
866   g_return_val_if_fail (src  != NULL, 0);
867   
868   return strlcat (dest, src, dest_size);
869 }
870
871 #else /* ! HAVE_STRLCPY */
872 /* g_strlcpy
873  *
874  * Copy string src to buffer dest (of buffer size dest_size).  At most
875  * dest_size-1 characters will be copied.  Always NUL terminates
876  * (unless dest_size == 0).  This function does NOT allocate memory.
877  * Unlike strncpy, this function doesn't pad dest (so it's often faster).
878  * Returns size of attempted result, strlen(src),
879  * so if retval >= dest_size, truncation occurred.
880  */
881 gsize
882 g_strlcpy (gchar       *dest,
883            const gchar *src,
884            gsize        dest_size)
885 {
886   register gchar *d = dest;
887   register const gchar *s = src;
888   register gsize n = dest_size;
889   
890   g_return_val_if_fail (dest != NULL, 0);
891   g_return_val_if_fail (src  != NULL, 0);
892   
893   /* Copy as many bytes as will fit */
894   if (n != 0 && --n != 0)
895     do
896       {
897         register gchar c = *s++;
898         
899         *d++ = c;
900         if (c == 0)
901           break;
902       }
903     while (--n != 0);
904   
905   /* If not enough room in dest, add NUL and traverse rest of src */
906   if (n == 0)
907     {
908       if (dest_size != 0)
909         *d = 0;
910       while (*s++)
911         ;
912     }
913   
914   return s - src - 1;  /* count does not include NUL */
915 }
916
917 /* g_strlcat
918  *
919  * Appends string src to buffer dest (of buffer size dest_size).
920  * At most dest_size-1 characters will be copied.
921  * Unlike strncat, dest_size is the full size of dest, not the space left over.
922  * This function does NOT allocate memory.
923  * This always NUL terminates (unless siz == 0 or there were no NUL characters
924  * in the dest_size characters of dest to start with).
925  * Returns size of attempted result, which is
926  * MIN (dest_size, strlen (original dest)) + strlen (src),
927  * so if retval >= dest_size, truncation occurred.
928  */
929 gsize
930 g_strlcat (gchar       *dest,
931            const gchar *src,
932            gsize        dest_size)
933 {
934   register gchar *d = dest;
935   register const gchar *s = src;
936   register gsize bytes_left = dest_size;
937   gsize dlength;  /* Logically, MIN (strlen (d), dest_size) */
938   
939   g_return_val_if_fail (dest != NULL, 0);
940   g_return_val_if_fail (src  != NULL, 0);
941   
942   /* Find the end of dst and adjust bytes left but don't go past end */
943   while (*d != 0 && bytes_left-- != 0)
944     d++;
945   dlength = d - dest;
946   bytes_left = dest_size - dlength;
947   
948   if (bytes_left == 0)
949     return dlength + strlen (s);
950   
951   while (*s != 0)
952     {
953       if (bytes_left != 1)
954         {
955           *d++ = *s;
956           bytes_left--;
957         }
958       s++;
959     }
960   *d = 0;
961   
962   return dlength + (s - src);  /* count does not include NUL */
963 }
964 #endif /* ! HAVE_STRLCPY */
965
966 gchar*
967 g_strdown (gchar *string)
968 {
969   register guchar *s;
970   
971   g_return_val_if_fail (string != NULL, NULL);
972   
973   s = (guchar *) string;
974   
975   while (*s)
976     {
977       if (isupper (*s))
978         *s = tolower (*s);
979       s++;
980     }
981   
982   return (gchar *) string;
983 }
984
985 gchar*
986 g_strup (gchar *string)
987 {
988   register guchar *s;
989
990   g_return_val_if_fail (string != NULL, NULL);
991
992   s = (guchar *) string;
993
994   while (*s)
995     {
996       if (islower (*s))
997         *s = toupper (*s);
998       s++;
999     }
1000
1001   return (gchar *) string;
1002 }
1003
1004 gchar*
1005 g_strreverse (gchar *string)
1006 {
1007   g_return_val_if_fail (string != NULL, NULL);
1008
1009   if (*string)
1010     {
1011       register gchar *h, *t;
1012
1013       h = string;
1014       t = string + strlen (string) - 1;
1015
1016       while (h < t)
1017         {
1018           register gchar c;
1019
1020           c = *h;
1021           *h = *t;
1022           h++;
1023           *t = c;
1024           t--;
1025         }
1026     }
1027
1028   return string;
1029 }
1030
1031 gint
1032 g_strcasecmp (const gchar *s1,
1033               const gchar *s2)
1034 {
1035 #ifdef HAVE_STRCASECMP
1036   g_return_val_if_fail (s1 != NULL, 0);
1037   g_return_val_if_fail (s2 != NULL, 0);
1038
1039   return strcasecmp (s1, s2);
1040 #else
1041   gint c1, c2;
1042
1043   g_return_val_if_fail (s1 != NULL, 0);
1044   g_return_val_if_fail (s2 != NULL, 0);
1045
1046   while (*s1 && *s2)
1047     {
1048       /* According to A. Cox, some platforms have islower's that
1049        * don't work right on non-uppercase
1050        */
1051       c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
1052       c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
1053       if (c1 != c2)
1054         return (c1 - c2);
1055       s1++; s2++;
1056     }
1057
1058   return (((gint)(guchar) *s1) - ((gint)(guchar) *s2));
1059 #endif
1060 }
1061
1062 gint
1063 g_strncasecmp (const gchar *s1,
1064                const gchar *s2,
1065                guint n)
1066 {
1067 #ifdef HAVE_STRNCASECMP
1068   return strncasecmp (s1, s2, n);
1069 #else
1070   gint c1, c2;
1071
1072   g_return_val_if_fail (s1 != NULL, 0);
1073   g_return_val_if_fail (s2 != NULL, 0);
1074
1075   while (n && *s1 && *s2)
1076     {
1077       n -= 1;
1078       /* According to A. Cox, some platforms have islower's that
1079        * don't work right on non-uppercase
1080        */
1081       c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
1082       c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
1083       if (c1 != c2)
1084         return (c1 - c2);
1085       s1++; s2++;
1086     }
1087
1088   if (n)
1089     return (((gint) (guchar) *s1) - ((gint) (guchar) *s2));
1090   else
1091     return 0;
1092 #endif
1093 }
1094
1095 gchar*
1096 g_strdelimit (gchar       *string,
1097               const gchar *delimiters,
1098               gchar        new_delim)
1099 {
1100   register gchar *c;
1101
1102   g_return_val_if_fail (string != NULL, NULL);
1103
1104   if (!delimiters)
1105     delimiters = G_STR_DELIMITERS;
1106
1107   for (c = string; *c; c++)
1108     {
1109       if (strchr (delimiters, *c))
1110         *c = new_delim;
1111     }
1112
1113   return string;
1114 }
1115
1116 gchar*
1117 g_strcanon (gchar       *string,
1118             const gchar *valid_chars,
1119             gchar        substitutor)
1120 {
1121   register gchar *c;
1122
1123   g_return_val_if_fail (string != NULL, NULL);
1124   g_return_val_if_fail (valid_chars != NULL, NULL);
1125
1126   for (c = string; *c; c++)
1127     {
1128       if (!strchr (valid_chars, *c))
1129         *c = substitutor;
1130     }
1131
1132   return string;
1133 }
1134
1135 gchar*
1136 g_strcompress (const gchar *source)
1137 {
1138   const gchar *p = source, *octal;
1139   gchar *dest = g_malloc (strlen (source) + 1);
1140   gchar *q = dest;
1141   
1142   while (*p)
1143     {
1144       if (*p == '\\')
1145         {
1146           p++;
1147           switch (*p)
1148             {
1149             case '0':  case '1':  case '2':  case '3':  case '4':
1150             case '5':  case '6':  case '7':
1151               *q = 0;
1152               octal = p;
1153               while ((p < octal + 3) && (*p >= '0') && (*p <= '7'))
1154                 {
1155                   *q = (*q * 8) + (*p - '0');
1156                   p++;
1157                 }
1158               q++;
1159               p--;
1160               break;
1161             case 'b':
1162               *q++ = '\b';
1163               break;
1164             case 'f':
1165               *q++ = '\f';
1166               break;
1167             case 'n':
1168               *q++ = '\n';
1169               break;
1170             case 'r':
1171               *q++ = '\r';
1172               break;
1173             case 't':
1174               *q++ = '\t';
1175               break;
1176             default:            /* Also handles \" and \\ */
1177               *q++ = *p;
1178               break;
1179             }
1180         }
1181       else
1182         *q++ = *p;
1183       p++;
1184     }
1185   *q = 0;
1186   
1187   return dest;
1188 }
1189
1190 gchar *
1191 g_strescape (const gchar *source,
1192              const gchar *exceptions)
1193 {
1194   const guchar *p;
1195   gchar *dest;
1196   gchar *q;
1197   guchar excmap[256];
1198   
1199   g_return_val_if_fail (source != NULL, NULL);
1200
1201   p = (guchar *) source;
1202   /* Each source byte needs maximally four destination chars (\777) */
1203   q = dest = g_malloc (strlen (source) * 4 + 1);
1204
1205   memset (excmap, 0, 256);
1206   if (exceptions)
1207     {
1208       guchar *e = (guchar *) exceptions;
1209
1210       while (*e)
1211         {
1212           excmap[*e] = 1;
1213           e++;
1214         }
1215     }
1216
1217   while (*p)
1218     {
1219       if (excmap[*p])
1220         *q++ = *p;
1221       else
1222         {
1223           switch (*p)
1224             {
1225             case '\b':
1226               *q++ = '\\';
1227               *q++ = 'b';
1228               break;
1229             case '\f':
1230               *q++ = '\\';
1231               *q++ = 'f';
1232               break;
1233             case '\n':
1234               *q++ = '\\';
1235               *q++ = 'n';
1236               break;
1237             case '\r':
1238               *q++ = '\\';
1239               *q++ = 'r';
1240               break;
1241             case '\t':
1242               *q++ = '\\';
1243               *q++ = 't';
1244               break;
1245             case '\\':
1246               *q++ = '\\';
1247               *q++ = '\\';
1248               break;
1249             case '"':
1250               *q++ = '\\';
1251               *q++ = '"';
1252               break;
1253             default:
1254               if ((*p < ' ') || (*p >= 0177))
1255                 {
1256                   *q++ = '\\';
1257                   *q++ = '0' + (((*p) >> 6) & 07);
1258                   *q++ = '0' + (((*p) >> 3) & 07);
1259                   *q++ = '0' + ((*p) & 07);
1260                 }
1261               else
1262                 *q++ = *p;
1263               break;
1264             }
1265         }
1266       p++;
1267     }
1268   *q = 0;
1269   return dest;
1270 }
1271
1272 gchar*
1273 g_strchug (gchar *string)
1274 {
1275   guchar *start;
1276
1277   g_return_val_if_fail (string != NULL, NULL);
1278
1279   for (start = (guchar*) string; *start && isspace (*start); start++)
1280     ;
1281
1282   g_memmove (string, start, strlen ((gchar *) start) + 1);
1283
1284   return string;
1285 }
1286
1287 gchar*
1288 g_strchomp (gchar *string)
1289 {
1290   gchar *s;
1291
1292   g_return_val_if_fail (string != NULL, NULL);
1293
1294   if (!*string)
1295     return string;
1296
1297   for (s = string + strlen (string) - 1; s >= string && isspace ((guchar)*s); 
1298        s--)
1299     *s = '\0';
1300
1301   return string;
1302 }
1303
1304 gchar**
1305 g_strsplit (const gchar *string,
1306             const gchar *delimiter,
1307             gint         max_tokens)
1308 {
1309   GSList *string_list = NULL, *slist;
1310   gchar **str_array, *s;
1311   guint n = 1;
1312
1313   g_return_val_if_fail (string != NULL, NULL);
1314   g_return_val_if_fail (delimiter != NULL, NULL);
1315
1316   if (max_tokens < 1)
1317     max_tokens = G_MAXINT;
1318
1319   s = strstr (string, delimiter);
1320   if (s)
1321     {
1322       guint delimiter_len = strlen (delimiter);
1323
1324       do
1325         {
1326           guint len;
1327           gchar *new_string;
1328
1329           len = s - string;
1330           new_string = g_new (gchar, len + 1);
1331           strncpy (new_string, string, len);
1332           new_string[len] = 0;
1333           string_list = g_slist_prepend (string_list, new_string);
1334           n++;
1335           string = s + delimiter_len;
1336           s = strstr (string, delimiter);
1337         }
1338       while (--max_tokens && s);
1339     }
1340   string_list = g_slist_prepend (string_list, g_strdup (string));
1341
1342   str_array = g_new (gchar*, n + 1);
1343
1344   str_array[n--] = NULL;
1345   for (slist = string_list; slist; slist = slist->next)
1346     str_array[n--] = slist->data;
1347
1348   g_slist_free (string_list);
1349
1350   return str_array;
1351 }
1352
1353 void
1354 g_strfreev (gchar **str_array)
1355 {
1356   if (str_array)
1357     {
1358       int i;
1359
1360       for(i = 0; str_array[i] != NULL; i++)
1361         g_free(str_array[i]);
1362
1363       g_free (str_array);
1364     }
1365 }
1366
1367 /**
1368  * g_strdupv:
1369  * @str_array: %NULL-terminated array of strings
1370  * 
1371  * Copies %NULL-terminated array of strings. The copy is a deep copy;
1372  * the new array should be freed by first freeing each string, then
1373  * the array itself. g_strfreev() does this for you. If called
1374  * on a %NULL value, g_strdupv() simply returns %NULL.
1375  * 
1376  * Return value: a new %NULL-terminated array of strings
1377  **/
1378 gchar**
1379 g_strdupv (gchar **str_array)
1380 {
1381   if (str_array)
1382     {
1383       gint i;
1384       gchar **retval;
1385
1386       i = 0;
1387       while (str_array[i])
1388         ++i;
1389           
1390       retval = g_new (gchar*, i + 1);
1391
1392       i = 0;
1393       while (str_array[i])
1394         {
1395           retval[i] = g_strdup (str_array[i]);
1396           ++i;
1397         }
1398       retval[i] = NULL;
1399
1400       return retval;
1401     }
1402   else
1403     return NULL;
1404 }
1405
1406 gchar*
1407 g_strjoinv (const gchar  *separator,
1408             gchar       **str_array)
1409 {
1410   gchar *string;
1411   gchar *ptr;
1412
1413   g_return_val_if_fail (str_array != NULL, NULL);
1414
1415   if (separator == NULL)
1416     separator = "";
1417
1418   if (*str_array)
1419     {
1420       guint i, len;
1421       guint separator_len;
1422
1423       separator_len = strlen (separator);
1424       /* First part, getting length */
1425       len = 1 + strlen (str_array[0]);
1426       for (i = 1; str_array[i] != NULL; i++)
1427         len += strlen (str_array[i]);
1428       len += separator_len * (i - 1);
1429
1430       /* Second part, building string */
1431       string = g_new (gchar, len);
1432       ptr = g_stpcpy (string, *str_array);
1433       for (i = 1; str_array[i] != NULL; i++)
1434         {
1435           ptr = g_stpcpy (ptr, separator);
1436           ptr = g_stpcpy (ptr, str_array[i]);
1437         }
1438       }
1439   else
1440     string = g_strdup ("");
1441
1442   return string;
1443 }
1444
1445 gchar*
1446 g_strjoin (const gchar  *separator,
1447            ...)
1448 {
1449   gchar *string, *s;
1450   va_list args;
1451   guint len;
1452   guint separator_len;
1453   gchar *ptr;
1454
1455   if (separator == NULL)
1456     separator = "";
1457
1458   separator_len = strlen (separator);
1459
1460   va_start (args, separator);
1461
1462   s = va_arg (args, gchar*);
1463
1464   if (s)
1465     {
1466       /* First part, getting length */
1467       len = 1 + strlen (s);
1468
1469       s = va_arg (args, gchar*);
1470       while (s)
1471         {
1472           len += separator_len + strlen (s);
1473           s = va_arg (args, gchar*);
1474         }
1475       va_end (args);
1476
1477       /* Second part, building string */
1478       string = g_new (gchar, len);
1479
1480       va_start (args, separator);
1481
1482       s = va_arg (args, gchar*);
1483       ptr = g_stpcpy (string, s);
1484
1485       s = va_arg (args, gchar*);
1486       while (s)
1487         {
1488           ptr = g_stpcpy (ptr, separator);
1489           ptr = g_stpcpy (ptr, s);
1490           s = va_arg (args, gchar*);
1491         }
1492     }
1493   else
1494     string = g_strdup ("");
1495
1496   va_end (args);
1497
1498   return string;
1499 }