Very minor stuff.
[platform/upstream/glib.git] / 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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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-1999.  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 #include <stdarg.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <locale.h>
40 #include <ctype.h>              /* For tolower() */
41 #if !defined (HAVE_STRSIGNAL) || !defined(NO_SYS_SIGLIST_DECL)
42 #include <signal.h>
43 #endif
44 #include "glib.h"
45 /* do not include <unistd.h> in this place since it
46  * inteferes with g_strsignal() on some OSes
47  */
48
49 gchar*
50 g_strdup (const gchar *str)
51 {
52   gchar *new_str;
53
54   if (str)
55     {
56       new_str = g_new (char, strlen (str) + 1);
57       strcpy (new_str, str);
58     }
59   else
60     new_str = NULL;
61
62   return new_str;
63 }
64
65 gpointer
66 g_memdup (gconstpointer mem,
67           guint         byte_size)
68 {
69   gpointer new_mem;
70
71   if (mem)
72     {
73       new_mem = g_malloc (byte_size);
74       memcpy (new_mem, mem, byte_size);
75     }
76   else
77     new_mem = NULL;
78
79   return new_mem;
80 }
81
82 gchar*
83 g_strndup (const gchar *str,
84            guint        n)
85 {
86   gchar *new_str;
87
88   if (str)
89     {
90       new_str = g_new (gchar, n + 1);
91       strncpy (new_str, str, n);
92       new_str[n] = '\0';
93     }
94   else
95     new_str = NULL;
96
97   return new_str;
98 }
99
100 gchar*
101 g_strnfill (guint length,
102             gchar fill_char)
103 {
104   register gchar *str, *s, *end;
105
106   str = g_new (gchar, length + 1);
107   s = str;
108   end = str + length;
109   while (s < end)
110     *(s++) = fill_char;
111   *s = 0;
112
113   return str;
114 }
115
116 gchar*
117 g_strdup_vprintf (const gchar *format,
118                   va_list      args1)
119 {
120   gchar *buffer;
121   va_list args2;
122
123   G_VA_COPY (args2, args1);
124
125   buffer = g_new (gchar, g_printf_string_upper_bound (format, args1));
126
127   vsprintf (buffer, format, args2);
128   va_end (args2);
129
130   return buffer;
131 }
132
133 gchar*
134 g_strdup_printf (const gchar *format,
135                  ...)
136 {
137   gchar *buffer;
138   va_list args;
139
140   va_start (args, format);
141   buffer = g_strdup_vprintf (format, args);
142   va_end (args);
143
144   return buffer;
145 }
146
147 gchar*
148 g_strconcat (const gchar *string1, ...)
149 {
150   guint   l;
151   va_list args;
152   gchar   *s;
153   gchar   *concat;
154
155   g_return_val_if_fail (string1 != NULL, NULL);
156
157   l = 1 + strlen (string1);
158   va_start (args, string1);
159   s = va_arg (args, gchar*);
160   while (s)
161     {
162       l += strlen (s);
163       s = va_arg (args, gchar*);
164     }
165   va_end (args);
166
167   concat = g_new (gchar, l);
168   concat[0] = 0;
169
170   strcat (concat, string1);
171   va_start (args, string1);
172   s = va_arg (args, gchar*);
173   while (s)
174     {
175       strcat (concat, s);
176       s = va_arg (args, gchar*);
177     }
178   va_end (args);
179
180   return concat;
181 }
182
183 gdouble
184 g_strtod (const gchar *nptr,
185           gchar **endptr)
186 {
187   gchar *fail_pos_1;
188   gchar *fail_pos_2;
189   gdouble val_1;
190   gdouble val_2 = 0;
191
192   g_return_val_if_fail (nptr != NULL, 0);
193
194   fail_pos_1 = NULL;
195   fail_pos_2 = NULL;
196
197   val_1 = strtod (nptr, &fail_pos_1);
198
199   if (fail_pos_1 && fail_pos_1[0] != 0)
200     {
201       gchar *old_locale;
202
203       old_locale = setlocale (LC_NUMERIC, "C");
204       val_2 = strtod (nptr, &fail_pos_2);
205       setlocale (LC_NUMERIC, old_locale);
206     }
207
208   if (!fail_pos_1 || fail_pos_1[0] == 0 || fail_pos_1 >= fail_pos_2)
209     {
210       if (endptr)
211         *endptr = fail_pos_1;
212       return val_1;
213     }
214   else
215     {
216       if (endptr)
217         *endptr = fail_pos_2;
218       return val_2;
219     }
220 }
221
222 gchar*
223 g_strerror (gint errnum)
224 {
225   static GStaticPrivate msg_private = G_STATIC_PRIVATE_INIT;
226   char *msg;
227
228 #ifdef HAVE_STRERROR
229   return strerror (errnum);
230 #elif NO_SYS_ERRLIST
231   switch (errnum)
232     {
233 #ifdef E2BIG
234     case E2BIG: return "argument list too long";
235 #endif
236 #ifdef EACCES
237     case EACCES: return "permission denied";
238 #endif
239 #ifdef EADDRINUSE
240     case EADDRINUSE: return "address already in use";
241 #endif
242 #ifdef EADDRNOTAVAIL
243     case EADDRNOTAVAIL: return "can't assign requested address";
244 #endif
245 #ifdef EADV
246     case EADV: return "advertise error";
247 #endif
248 #ifdef EAFNOSUPPORT
249     case EAFNOSUPPORT: return "address family not supported by protocol family";
250 #endif
251 #ifdef EAGAIN
252     case EAGAIN: return "try again";
253 #endif
254 #ifdef EALIGN
255     case EALIGN: return "EALIGN";
256 #endif
257 #ifdef EALREADY
258     case EALREADY: return "operation already in progress";
259 #endif
260 #ifdef EBADE
261     case EBADE: return "bad exchange descriptor";
262 #endif
263 #ifdef EBADF
264     case EBADF: return "bad file number";
265 #endif
266 #ifdef EBADFD
267     case EBADFD: return "file descriptor in bad state";
268 #endif
269 #ifdef EBADMSG
270     case EBADMSG: return "not a data message";
271 #endif
272 #ifdef EBADR
273     case EBADR: return "bad request descriptor";
274 #endif
275 #ifdef EBADRPC
276     case EBADRPC: return "RPC structure is bad";
277 #endif
278 #ifdef EBADRQC
279     case EBADRQC: return "bad request code";
280 #endif
281 #ifdef EBADSLT
282     case EBADSLT: return "invalid slot";
283 #endif
284 #ifdef EBFONT
285     case EBFONT: return "bad font file format";
286 #endif
287 #ifdef EBUSY
288     case EBUSY: return "mount device busy";
289 #endif
290 #ifdef ECHILD
291     case ECHILD: return "no children";
292 #endif
293 #ifdef ECHRNG
294     case ECHRNG: return "channel number out of range";
295 #endif
296 #ifdef ECOMM
297     case ECOMM: return "communication error on send";
298 #endif
299 #ifdef ECONNABORTED
300     case ECONNABORTED: return "software caused connection abort";
301 #endif
302 #ifdef ECONNREFUSED
303     case ECONNREFUSED: return "connection refused";
304 #endif
305 #ifdef ECONNRESET
306     case ECONNRESET: return "connection reset by peer";
307 #endif
308 #if defined(EDEADLK) && (!defined(EWOULDBLOCK) || (EDEADLK != EWOULDBLOCK))
309     case EDEADLK: return "resource deadlock avoided";
310 #endif
311 #ifdef EDEADLOCK
312     case EDEADLOCK: return "resource deadlock avoided";
313 #endif
314 #ifdef EDESTADDRREQ
315     case EDESTADDRREQ: return "destination address required";
316 #endif
317 #ifdef EDIRTY
318     case EDIRTY: return "mounting a dirty fs w/o force";
319 #endif
320 #ifdef EDOM
321     case EDOM: return "math argument out of range";
322 #endif
323 #ifdef EDOTDOT
324     case EDOTDOT: return "cross mount point";
325 #endif
326 #ifdef EDQUOT
327     case EDQUOT: return "disk quota exceeded";
328 #endif
329 #ifdef EDUPPKG
330     case EDUPPKG: return "duplicate package name";
331 #endif
332 #ifdef EEXIST
333     case EEXIST: return "file already exists";
334 #endif
335 #ifdef EFAULT
336     case EFAULT: return "bad address in system call argument";
337 #endif
338 #ifdef EFBIG
339     case EFBIG: return "file too large";
340 #endif
341 #ifdef EHOSTDOWN
342     case EHOSTDOWN: return "host is down";
343 #endif
344 #ifdef EHOSTUNREACH
345     case EHOSTUNREACH: return "host is unreachable";
346 #endif
347 #ifdef EIDRM
348     case EIDRM: return "identifier removed";
349 #endif
350 #ifdef EINIT
351     case EINIT: return "initialization error";
352 #endif
353 #ifdef EINPROGRESS
354     case EINPROGRESS: return "operation now in progress";
355 #endif
356 #ifdef EINTR
357     case EINTR: return "interrupted system call";
358 #endif
359 #ifdef EINVAL
360     case EINVAL: return "invalid argument";
361 #endif
362 #ifdef EIO
363     case EIO: return "I/O error";
364 #endif
365 #ifdef EISCONN
366     case EISCONN: return "socket is already connected";
367 #endif
368 #ifdef EISDIR
369     case EISDIR: return "illegal operation on a directory";
370 #endif
371 #ifdef EISNAME
372     case EISNAM: return "is a name file";
373 #endif
374 #ifdef ELBIN
375     case ELBIN: return "ELBIN";
376 #endif
377 #ifdef EL2HLT
378     case EL2HLT: return "level 2 halted";
379 #endif
380 #ifdef EL2NSYNC
381     case EL2NSYNC: return "level 2 not synchronized";
382 #endif
383 #ifdef EL3HLT
384     case EL3HLT: return "level 3 halted";
385 #endif
386 #ifdef EL3RST
387     case EL3RST: return "level 3 reset";
388 #endif
389 #ifdef ELIBACC
390     case ELIBACC: return "can not access a needed shared library";
391 #endif
392 #ifdef ELIBBAD
393     case ELIBBAD: return "accessing a corrupted shared library";
394 #endif
395 #ifdef ELIBEXEC
396     case ELIBEXEC: return "can not exec a shared library directly";
397 #endif
398 #ifdef ELIBMAX
399     case ELIBMAX: return "attempting to link in more shared libraries than system limit";
400 #endif
401 #ifdef ELIBSCN
402     case ELIBSCN: return ".lib section in a.out corrupted";
403 #endif
404 #ifdef ELNRNG
405     case ELNRNG: return "link number out of range";
406 #endif
407 #ifdef ELOOP
408     case ELOOP: return "too many levels of symbolic links";
409 #endif
410 #ifdef EMFILE
411     case EMFILE: return "too many open files";
412 #endif
413 #ifdef EMLINK
414     case EMLINK: return "too many links";
415 #endif
416 #ifdef EMSGSIZE
417     case EMSGSIZE: return "message too long";
418 #endif
419 #ifdef EMULTIHOP
420     case EMULTIHOP: return "multihop attempted";
421 #endif
422 #ifdef ENAMETOOLONG
423     case ENAMETOOLONG: return "file name too long";
424 #endif
425 #ifdef ENAVAIL
426     case ENAVAIL: return "not available";
427 #endif
428 #ifdef ENET
429     case ENET: return "ENET";
430 #endif
431 #ifdef ENETDOWN
432     case ENETDOWN: return "network is down";
433 #endif
434 #ifdef ENETRESET
435     case ENETRESET: return "network dropped connection on reset";
436 #endif
437 #ifdef ENETUNREACH
438     case ENETUNREACH: return "network is unreachable";
439 #endif
440 #ifdef ENFILE
441     case ENFILE: return "file table overflow";
442 #endif
443 #ifdef ENOANO
444     case ENOANO: return "anode table overflow";
445 #endif
446 #if defined(ENOBUFS) && (!defined(ENOSR) || (ENOBUFS != ENOSR))
447     case ENOBUFS: return "no buffer space available";
448 #endif
449 #ifdef ENOCSI
450     case ENOCSI: return "no CSI structure available";
451 #endif
452 #ifdef ENODATA
453     case ENODATA: return "no data available";
454 #endif
455 #ifdef ENODEV
456     case ENODEV: return "no such device";
457 #endif
458 #ifdef ENOENT
459     case ENOENT: return "no such file or directory";
460 #endif
461 #ifdef ENOEXEC
462     case ENOEXEC: return "exec format error";
463 #endif
464 #ifdef ENOLCK
465     case ENOLCK: return "no locks available";
466 #endif
467 #ifdef ENOLINK
468     case ENOLINK: return "link has be severed";
469 #endif
470 #ifdef ENOMEM
471     case ENOMEM: return "not enough memory";
472 #endif
473 #ifdef ENOMSG
474     case ENOMSG: return "no message of desired type";
475 #endif
476 #ifdef ENONET
477     case ENONET: return "machine is not on the network";
478 #endif
479 #ifdef ENOPKG
480     case ENOPKG: return "package not installed";
481 #endif
482 #ifdef ENOPROTOOPT
483     case ENOPROTOOPT: return "bad proocol option";
484 #endif
485 #ifdef ENOSPC
486     case ENOSPC: return "no space left on device";
487 #endif
488 #ifdef ENOSR
489     case ENOSR: return "out of stream resources";
490 #endif
491 #ifdef ENOSTR
492     case ENOSTR: return "not a stream device";
493 #endif
494 #ifdef ENOSYM
495     case ENOSYM: return "unresolved symbol name";
496 #endif
497 #ifdef ENOSYS
498     case ENOSYS: return "function not implemented";
499 #endif
500 #ifdef ENOTBLK
501     case ENOTBLK: return "block device required";
502 #endif
503 #ifdef ENOTCONN
504     case ENOTCONN: return "socket is not connected";
505 #endif
506 #ifdef ENOTDIR
507     case ENOTDIR: return "not a directory";
508 #endif
509 #ifdef ENOTEMPTY
510     case ENOTEMPTY: return "directory not empty";
511 #endif
512 #ifdef ENOTNAM
513     case ENOTNAM: return "not a name file";
514 #endif
515 #ifdef ENOTSOCK
516     case ENOTSOCK: return "socket operation on non-socket";
517 #endif
518 #ifdef ENOTTY
519     case ENOTTY: return "inappropriate device for ioctl";
520 #endif
521 #ifdef ENOTUNIQ
522     case ENOTUNIQ: return "name not unique on network";
523 #endif
524 #ifdef ENXIO
525     case ENXIO: return "no such device or address";
526 #endif
527 #ifdef EOPNOTSUPP
528     case EOPNOTSUPP: return "operation not supported on socket";
529 #endif
530 #ifdef EPERM
531     case EPERM: return "not owner";
532 #endif
533 #ifdef EPFNOSUPPORT
534     case EPFNOSUPPORT: return "protocol family not supported";
535 #endif
536 #ifdef EPIPE
537     case EPIPE: return "broken pipe";
538 #endif
539 #ifdef EPROCLIM
540     case EPROCLIM: return "too many processes";
541 #endif
542 #ifdef EPROCUNAVAIL
543     case EPROCUNAVAIL: return "bad procedure for program";
544 #endif
545 #ifdef EPROGMISMATCH
546     case EPROGMISMATCH: return "program version wrong";
547 #endif
548 #ifdef EPROGUNAVAIL
549     case EPROGUNAVAIL: return "RPC program not available";
550 #endif
551 #ifdef EPROTO
552     case EPROTO: return "protocol error";
553 #endif
554 #ifdef EPROTONOSUPPORT
555     case EPROTONOSUPPORT: return "protocol not suppored";
556 #endif
557 #ifdef EPROTOTYPE
558     case EPROTOTYPE: return "protocol wrong type for socket";
559 #endif
560 #ifdef ERANGE
561     case ERANGE: return "math result unrepresentable";
562 #endif
563 #if defined(EREFUSED) && (!defined(ECONNREFUSED) || (EREFUSED != ECONNREFUSED))
564     case EREFUSED: return "EREFUSED";
565 #endif
566 #ifdef EREMCHG
567     case EREMCHG: return "remote address changed";
568 #endif
569 #ifdef EREMDEV
570     case EREMDEV: return "remote device";
571 #endif
572 #ifdef EREMOTE
573     case EREMOTE: return "pathname hit remote file system";
574 #endif
575 #ifdef EREMOTEIO
576     case EREMOTEIO: return "remote i/o error";
577 #endif
578 #ifdef EREMOTERELEASE
579     case EREMOTERELEASE: return "EREMOTERELEASE";
580 #endif
581 #ifdef EROFS
582     case EROFS: return "read-only file system";
583 #endif
584 #ifdef ERPCMISMATCH
585     case ERPCMISMATCH: return "RPC version is wrong";
586 #endif
587 #ifdef ERREMOTE
588     case ERREMOTE: return "object is remote";
589 #endif
590 #ifdef ESHUTDOWN
591     case ESHUTDOWN: return "can't send afer socket shutdown";
592 #endif
593 #ifdef ESOCKTNOSUPPORT
594     case ESOCKTNOSUPPORT: return "socket type not supported";
595 #endif
596 #ifdef ESPIPE
597     case ESPIPE: return "invalid seek";
598 #endif
599 #ifdef ESRCH
600     case ESRCH: return "no such process";
601 #endif
602 #ifdef ESRMNT
603     case ESRMNT: return "srmount error";
604 #endif
605 #ifdef ESTALE
606     case ESTALE: return "stale remote file handle";
607 #endif
608 #ifdef ESUCCESS
609     case ESUCCESS: return "Error 0";
610 #endif
611 #ifdef ETIME
612     case ETIME: return "timer expired";
613 #endif
614 #ifdef ETIMEDOUT
615     case ETIMEDOUT: return "connection timed out";
616 #endif
617 #ifdef ETOOMANYREFS
618     case ETOOMANYREFS: return "too many references: can't splice";
619 #endif
620 #ifdef ETXTBSY
621     case ETXTBSY: return "text file or pseudo-device busy";
622 #endif
623 #ifdef EUCLEAN
624     case EUCLEAN: return "structure needs cleaning";
625 #endif
626 #ifdef EUNATCH
627     case EUNATCH: return "protocol driver not attached";
628 #endif
629 #ifdef EUSERS
630     case EUSERS: return "too many users";
631 #endif
632 #ifdef EVERSION
633     case EVERSION: return "version mismatch";
634 #endif
635 #if defined(EWOULDBLOCK) && (!defined(EAGAIN) || (EWOULDBLOCK != EAGAIN))
636     case EWOULDBLOCK: return "operation would block";
637 #endif
638 #ifdef EXDEV
639     case EXDEV: return "cross-domain link";
640 #endif
641 #ifdef EXFULL
642     case EXFULL: return "message tables full";
643 #endif
644     }
645 #else /* NO_SYS_ERRLIST */
646   extern int sys_nerr;
647   extern char *sys_errlist[];
648
649   if ((errnum > 0) && (errnum <= sys_nerr))
650     return sys_errlist [errnum];
651 #endif /* NO_SYS_ERRLIST */
652
653   msg = g_static_private_get (&msg_private);
654   if (!msg)
655     {
656       msg = g_new (gchar, 64);
657       g_static_private_set (&msg_private, msg, g_free);
658     }
659
660   sprintf (msg, "unknown error (%d)", errnum);
661
662   return msg;
663 }
664
665 gchar*
666 g_strsignal (gint signum)
667 {
668   static GStaticPrivate msg_private = G_STATIC_PRIVATE_INIT;
669   char *msg;
670
671 #ifdef HAVE_STRSIGNAL
672 #ifdef G_OS_BEOS
673 extern const char * strsignal(int);
674 #else /* !G_OS_BEOS */
675   /* this is declared differently (const) in string.h on BeOS */
676   extern char *strsignal (int sig);
677 #endif /* !G_OS_BEOS */
678   return strsignal (signum);
679 #elif NO_SYS_SIGLIST
680   switch (signum)
681     {
682 #ifdef SIGHUP
683     case SIGHUP: return "Hangup";
684 #endif
685 #ifdef SIGINT
686     case SIGINT: return "Interrupt";
687 #endif
688 #ifdef SIGQUIT
689     case SIGQUIT: return "Quit";
690 #endif
691 #ifdef SIGILL
692     case SIGILL: return "Illegal instruction";
693 #endif
694 #ifdef SIGTRAP
695     case SIGTRAP: return "Trace/breakpoint trap";
696 #endif
697 #ifdef SIGABRT
698     case SIGABRT: return "IOT trap/Abort";
699 #endif
700 #ifdef SIGBUS
701     case SIGBUS: return "Bus error";
702 #endif
703 #ifdef SIGFPE
704     case SIGFPE: return "Floating point exception";
705 #endif
706 #ifdef SIGKILL
707     case SIGKILL: return "Killed";
708 #endif
709 #ifdef SIGUSR1
710     case SIGUSR1: return "User defined signal 1";
711 #endif
712 #ifdef SIGSEGV
713     case SIGSEGV: return "Segmentation fault";
714 #endif
715 #ifdef SIGUSR2
716     case SIGUSR2: return "User defined signal 2";
717 #endif
718 #ifdef SIGPIPE
719     case SIGPIPE: return "Broken pipe";
720 #endif
721 #ifdef SIGALRM
722     case SIGALRM: return "Alarm clock";
723 #endif
724 #ifdef SIGTERM
725     case SIGTERM: return "Terminated";
726 #endif
727 #ifdef SIGSTKFLT
728     case SIGSTKFLT: return "Stack fault";
729 #endif
730 #ifdef SIGCHLD
731     case SIGCHLD: return "Child exited";
732 #endif
733 #ifdef SIGCONT
734     case SIGCONT: return "Continued";
735 #endif
736 #ifdef SIGSTOP
737     case SIGSTOP: return "Stopped (signal)";
738 #endif
739 #ifdef SIGTSTP
740     case SIGTSTP: return "Stopped";
741 #endif
742 #ifdef SIGTTIN
743     case SIGTTIN: return "Stopped (tty input)";
744 #endif
745 #ifdef SIGTTOU
746     case SIGTTOU: return "Stopped (tty output)";
747 #endif
748 #ifdef SIGURG
749     case SIGURG: return "Urgent condition";
750 #endif
751 #ifdef SIGXCPU
752     case SIGXCPU: return "CPU time limit exceeded";
753 #endif
754 #ifdef SIGXFSZ
755     case SIGXFSZ: return "File size limit exceeded";
756 #endif
757 #ifdef SIGVTALRM
758     case SIGVTALRM: return "Virtual time alarm";
759 #endif
760 #ifdef SIGPROF
761     case SIGPROF: return "Profile signal";
762 #endif
763 #ifdef SIGWINCH
764     case SIGWINCH: return "Window size changed";
765 #endif
766 #ifdef SIGIO
767     case SIGIO: return "Possible I/O";
768 #endif
769 #ifdef SIGPWR
770     case SIGPWR: return "Power failure";
771 #endif
772 #ifdef SIGUNUSED
773     case SIGUNUSED: return "Unused signal";
774 #endif
775     }
776 #else /* NO_SYS_SIGLIST */
777
778 #ifdef NO_SYS_SIGLIST_DECL
779   extern char *sys_siglist[];   /*(see Tue Jan 19 00:44:24 1999 in changelog)*/
780 #endif
781
782   return (char*) /* this function should return const --josh */ sys_siglist [signum];
783 #endif /* NO_SYS_SIGLIST */
784
785   msg = g_static_private_get (&msg_private);
786   if (!msg)
787     {
788       msg = g_new (gchar, 64);
789       g_static_private_set (&msg_private, msg, g_free);
790     }
791
792   sprintf (msg, "unknown signal (%d)", signum);
793
794   return msg;
795 }
796
797 void
798 g_strdown (gchar *string)
799 {
800   register guchar *s;
801
802   g_return_if_fail (string != NULL);
803
804   s = string;
805
806   while (*s)
807     {
808       *s = tolower (*s);
809       s++;
810     }
811 }
812
813 void
814 g_strup (gchar *string)
815 {
816   register guchar *s;
817
818   g_return_if_fail (string != NULL);
819
820   s = string;
821
822   while (*s)
823     {
824       *s = toupper (*s);
825       s++;
826     }
827 }
828
829 void
830 g_strreverse (gchar *string)
831 {
832   g_return_if_fail (string != NULL);
833
834   if (*string)
835     {
836       register gchar *h, *t;
837
838       h = string;
839       t = string + strlen (string) - 1;
840
841       while (h < t)
842         {
843           register gchar c;
844
845           c = *h;
846           *h = *t;
847           h++;
848           *t = c;
849           t--;
850         }
851     }
852 }
853
854 gint
855 g_strcasecmp (const gchar *s1,
856               const gchar *s2)
857 {
858 #ifdef HAVE_STRCASECMP
859   g_return_val_if_fail (s1 != NULL, 0);
860   g_return_val_if_fail (s2 != NULL, 0);
861
862   return strcasecmp (s1, s2);
863 #else
864   gint c1, c2;
865
866   g_return_val_if_fail (s1 != NULL, 0);
867   g_return_val_if_fail (s2 != NULL, 0);
868
869   while (*s1 && *s2)
870     {
871       /* According to A. Cox, some platforms have islower's that
872        * don't work right on non-uppercase
873        */
874       c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
875       c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
876       if (c1 != c2)
877         return (c1 - c2);
878       s1++; s2++;
879     }
880
881   return (((gint)(guchar) *s1) - ((gint)(guchar) *s2));
882 #endif
883 }
884
885 gint
886 g_strncasecmp (const gchar *s1,
887                const gchar *s2,
888                guint n)
889 {
890 #ifdef HAVE_STRNCASECMP
891   return strncasecmp (s1, s2, n);
892 #else
893   gint c1, c2;
894
895   g_return_val_if_fail (s1 != NULL, 0);
896   g_return_val_if_fail (s2 != NULL, 0);
897
898   while (n-- && *s1 && *s2)
899     {
900       /* According to A. Cox, some platforms have islower's that
901        * don't work right on non-uppercase
902        */
903       c1 = isupper ((guchar)*s1) ? tolower ((guchar)*s1) : *s1;
904       c2 = isupper ((guchar)*s2) ? tolower ((guchar)*s2) : *s2;
905       if (c1 != c2)
906         return (c1 - c2);
907       s1++; s2++;
908     }
909
910   if (n)
911     return (((gint)(guchar) *s1) - ((gint)(guchar) *s2));
912   else
913     return 0;
914 #endif
915 }
916
917 gchar*
918 g_strdelimit (gchar       *string,
919               const gchar *delimiters,
920               gchar        new_delim)
921 {
922   register gchar *c;
923
924   g_return_val_if_fail (string != NULL, NULL);
925
926   if (!delimiters)
927     delimiters = G_STR_DELIMITERS;
928
929   for (c = string; *c; c++)
930     {
931       if (strchr (delimiters, *c))
932         *c = new_delim;
933     }
934
935   return string;
936 }
937
938 gchar*
939 g_strcompress (const gchar *source)
940 {
941   const gchar *p = source, *octal;
942   gchar *dest = g_malloc (strlen (source) + 1);
943   gchar *q = dest;
944
945   while (*p)
946     {
947       if (*p == '\\')
948         {
949           p++;
950           switch (*p)
951             {
952             case '0':  case '1':  case '2':  case '3':  case '4':
953             case '5':  case '6':  case '7':
954               *q = 0;
955               octal = p;
956               while ((p < octal + 3) && (*p >= '0') && (*p <= '7'))
957                 {
958                   *q = (*q * 8) + (*p - '0');
959                   p++;
960                 }
961               q++;
962               p--;
963               break;
964             case 'b':
965               *q++ = '\b';
966               break;
967             case 'f':
968               *q++ = '\f';
969               break;
970             case 'n':
971               *q++ = '\n';
972               break;
973             case 'r':
974               *q++ = '\r';
975               break;
976             case 't':
977               *q++ = '\t';
978               break;
979             default:            /* Also handles \" and \\ */
980               *q++ = *p;
981               break;
982             }
983         }
984       else
985         *q++ = *p;
986       p++;
987     }
988   *q = 0;
989   return dest;
990 }
991
992 gchar *
993 g_strescape (const gchar *source,
994              const gchar *exceptions)
995 {
996   const guchar *p = (guchar *) source;
997   /* Each source byte needs maximally four destination chars (\777) */
998   gchar *dest = g_malloc (strlen (source) * 4 + 1);
999   gchar *q = dest;
1000   guchar excmap[256];
1001
1002   memset (excmap, 0, 256);
1003   if (exceptions)
1004     {
1005       guchar *e = (guchar *) exceptions;
1006
1007       while (*e)
1008         {
1009           excmap[*e] = 1;
1010           e++;
1011         }
1012     }
1013
1014   while (*p)
1015     {
1016       if (excmap[*p])
1017         *q++ = *p;
1018       else
1019         {
1020           switch (*p)
1021             {
1022             case '\b':
1023               *q++ = '\\';
1024               *q++ = 'b';
1025               break;
1026             case '\f':
1027               *q++ = '\\';
1028               *q++ = 'f';
1029               break;
1030             case '\n':
1031               *q++ = '\\';
1032               *q++ = 'n';
1033               break;
1034             case '\r':
1035               *q++ = '\\';
1036               *q++ = 'r';
1037               break;
1038             case '\t':
1039               *q++ = '\\';
1040               *q++ = 't';
1041               break;
1042             case '\\':
1043               *q++ = '\\';
1044               *q++ = '\\';
1045               break;
1046             case '"':
1047               *q++ = '\\';
1048               *q++ = '"';
1049               break;
1050             default:
1051               if ((*p < ' ') || (*p >= 0177))
1052                 {
1053                   *q++ = '\\';
1054                   *q++ = '0' + (((*p) >> 6) & 07);
1055                   *q++ = '0' + (((*p) >> 3) & 07);
1056                   *q++ = '0' + ((*p) & 07);
1057                 }
1058               else
1059                 *q++ = *p;
1060               break;
1061             }
1062         }
1063       p++;
1064     }
1065   *q = 0;
1066   return dest;
1067 }
1068
1069 /* blame Elliot for these next five routines */
1070 gchar*
1071 g_strchug (gchar *string)
1072 {
1073   guchar *start;
1074
1075   g_return_val_if_fail (string != NULL, NULL);
1076
1077   for (start = string; *start && isspace (*start); start++)
1078     ;
1079
1080   g_memmove(string, start, strlen(start) + 1);
1081
1082   return string;
1083 }
1084
1085 gchar*
1086 g_strchomp (gchar *string)
1087 {
1088   gchar *s;
1089
1090   g_return_val_if_fail (string != NULL, NULL);
1091
1092   if (!*string)
1093     return string;
1094
1095   for (s = string + strlen (string) - 1; s >= string && isspace ((guchar)*s); 
1096        s--)
1097     *s = '\0';
1098
1099   return string;
1100 }
1101
1102 gchar**
1103 g_strsplit (const gchar *string,
1104             const gchar *delimiter,
1105             gint         max_tokens)
1106 {
1107   GSList *string_list = NULL, *slist;
1108   gchar **str_array, *s;
1109   guint i, n = 1;
1110
1111   g_return_val_if_fail (string != NULL, NULL);
1112   g_return_val_if_fail (delimiter != NULL, NULL);
1113
1114   if (max_tokens < 1)
1115     max_tokens = G_MAXINT;
1116
1117   s = strstr (string, delimiter);
1118   if (s)
1119     {
1120       guint delimiter_len = strlen (delimiter);
1121
1122       do
1123         {
1124           guint len;
1125           gchar *new_string;
1126
1127           len = s - string;
1128           new_string = g_new (gchar, len + 1);
1129           strncpy (new_string, string, len);
1130           new_string[len] = 0;
1131           string_list = g_slist_prepend (string_list, new_string);
1132           n++;
1133           string = s + delimiter_len;
1134           s = strstr (string, delimiter);
1135         }
1136       while (--max_tokens && s);
1137     }
1138   if (*string)
1139     {
1140       n++;
1141       string_list = g_slist_prepend (string_list, g_strdup (string));
1142     }
1143
1144   str_array = g_new (gchar*, n);
1145
1146   i = n - 1;
1147
1148   str_array[i--] = NULL;
1149   for (slist = string_list; slist; slist = slist->next)
1150     str_array[i--] = slist->data;
1151
1152   g_slist_free (string_list);
1153
1154   return str_array;
1155 }
1156
1157 void
1158 g_strfreev (gchar **str_array)
1159 {
1160   if (str_array)
1161     {
1162       int i;
1163
1164       for(i = 0; str_array[i] != NULL; i++)
1165         g_free(str_array[i]);
1166
1167       g_free (str_array);
1168     }
1169 }
1170
1171 gchar*
1172 g_strjoinv (const gchar  *separator,
1173             gchar       **str_array)
1174 {
1175   gchar *string;
1176
1177   g_return_val_if_fail (str_array != NULL, NULL);
1178
1179   if (separator == NULL)
1180     separator = "";
1181
1182   if (*str_array)
1183     {
1184       guint i, len;
1185       guint separator_len;
1186
1187       separator_len = strlen (separator);
1188       len = 1 + strlen (str_array[0]);
1189       for(i = 1; str_array[i] != NULL; i++)
1190         len += separator_len + strlen(str_array[i]);
1191
1192       string = g_new (gchar, len);
1193       *string = 0;
1194       strcat (string, *str_array);
1195       for (i = 1; str_array[i] != NULL; i++)
1196         {
1197           strcat (string, separator);
1198           strcat (string, str_array[i]);
1199         }
1200       }
1201   else
1202     string = g_strdup ("");
1203
1204   return string;
1205 }
1206
1207 gchar*
1208 g_strjoin (const gchar  *separator,
1209            ...)
1210 {
1211   gchar *string, *s;
1212   va_list args;
1213   guint len;
1214   guint separator_len;
1215
1216   if (separator == NULL)
1217     separator = "";
1218
1219   separator_len = strlen (separator);
1220
1221   va_start (args, separator);
1222
1223   s = va_arg (args, gchar*);
1224
1225   if (s)
1226     {
1227       len = strlen (s);
1228
1229       s = va_arg (args, gchar*);
1230       while (s)
1231         {
1232           len += separator_len + strlen (s);
1233           s = va_arg (args, gchar*);
1234         }
1235       va_end (args);
1236
1237       string = g_new (gchar, len + 1);
1238       *string = 0;
1239
1240       va_start (args, separator);
1241
1242       s = va_arg (args, gchar*);
1243       strcat (string, s);
1244
1245       s = va_arg (args, gchar*);
1246       while (s)
1247         {
1248           strcat (string, separator);
1249           strcat (string, s);
1250           s = va_arg (args, gchar*);
1251         }
1252     }
1253   else
1254     string = g_strdup ("");
1255
1256   va_end (args);
1257
1258   return string;
1259 }