Started out on v0.6.
authorsolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Thu, 23 Dec 2010 06:15:28 +0000 (06:15 +0000)
committersolar <solar@546481bc-9713-0410-bf18-d3337bbf4a3e>
Thu, 23 Dec 2010 06:15:28 +0000 (06:15 +0000)
git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@503 546481bc-9713-0410-bf18-d3337bbf4a3e

includes/ctype.h
includes/errno.h
includes/locale.h [new file with mode: 0644]
includes/stdio.h
includes/stdlib.h
includes/string.h
platform/example/includes/signal.h
platform/example_cygwin/includes/signal.h

index 2c8071c5da3b39eb08f1ba72d2b8d3eacc98345e..a4ac53449bfd52e529860d95358dbe24ccf7d24e 100644 (file)
@@ -9,15 +9,85 @@
 #ifndef _PDCLIB_CTYPE_H
 #define _PDCLIB_CTYPE_H _PDCLIB_CTYPE_H
 
-/* ------------------------------------------------------------------------- */
-/*  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  */
-/* ------------------------------------------------------------------------- */
-/* This implements two functions that are required by <stdlib.h> / <stdio.h> */
-/* for the C locale only. Will be replaced in v0.6 by something compliant.   */
-/* ------------------------------------------------------------------------- */
-
-int tolower( int c );
+/* Character classification functions */
+
+/* Note that there is a difference between "whitespace" (any printing, non-
+   graph character, like horizontal and vertical tab), and "blank" (the literal
+   ' ' space character).
+
+   There will be masking macros for each of these later on, but right now I
+   focus on the functions only.
+*/
+
+/* Returns isalpha( c ) || isdigit( c ) */
+int isalnum( int c );
+
+/* Returns isupper( c ) || islower( c ) in the "C" locale.
+   In any other locale, also returns true for a locale-specific set of
+   alphabetic characters which are neither control characters, digits,
+   punctation, or whitespace.
+*/
+int isalpha( int c );
+
+/* Returns true if the character is a whitespace. In the "C" locale, only ' '
+   and '\t' are considered whitespace.
+*/
+int isblank( int c );
+
+/* Returns true if the character is a control character. */
+int iscntrl( int c );
+
+/* Returns true if the character is a decimal digit. */
+int isdigit( int c );
+
+/* Returns true for every printing character except space (' '). */
+int isgraph( int c );
+
+/* Returns true for lowercase letters in the "C" locale.
+   In any other locale, also returns true for a locale-specific set of
+   characters which are neither control characters, digits, punctation, or
+   space (' '). In a locale other than the "C" locale, a character might test
+   true for both islower() and isupper().
+*/
+int islower( int c );
+
+/* Returns true for every printing character including space (' '). */
+int isprint( int c );
+
+/* Returns true for every printing character that is neither whitespace
+   nor alphanumeric in the "C" locale. In any other locale, there might be
+   characters that are printing characters, but neither whitespace nor
+   alphanumeric.
+*/
+int ispunct( int c );
+
+/* Returns true for every standard whitespace character (' ', '\f', '\n', '\r',
+   '\t', '\v') in the "C" locale. In any other locale, also returns true for a
+   locale-specific set of characters for which isalnum() is false.
+*/ 
 int isspace( int c );
 
-#endif
+/* Returns true for uppercase letters in the "C" locale.
+   In any other locale, also returns true for a locale-specific set of
+   characters which are neither control characters, digits, punctation, or
+   space (' '). In a locale other than the "C" locale, a character might test
+   true for both islower() and isupper().
+*/
+int isupper( int c );
+
+/* Returns true for any hexadecimal-digit character. */
+int isxdigit( int c );
 
+/* Character case mapping functions */
+
+/* Converts an uppercase letter to a corresponding lowercase letter. Input that
+   is not an uppercase letter remains unchanged.
+*/
+int tolower( c );
+
+/* Converts a lowercase letter to a corresponding uppercase letter. Input that
+   is not a lowercase letter remains unchanged.
+*/
+int toupper( c );
+
+#endif
index 2795fdf6c727128b247a0c742471e23a0f228ff6..90c61db1fbf9dfda207aabe1b2129f3d9729faf8 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* Errors <errno.h>
+/* 7.5 Errors <errno.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
diff --git a/includes/locale.h b/includes/locale.h
new file mode 100644 (file)
index 0000000..fd014db
--- /dev/null
@@ -0,0 +1,94 @@
+/* $Id$ */
+
+/* 7.11 Localization <locale.h>
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#ifndef _PDCLIB_LOCALE_H
+#define _PDCLIB_LOCALE_H _PDCLIB_LOCALE_H
+
+/* The structure returned by localeconv().
+
+   The values for *_sep_by_space:
+   0 - no space
+   1 - if symbol and sign are adjacent, a space seperates them from the value;
+       otherwise a space seperates the symbol from the value
+   2 - if symbol and sign are adjacent, a space seperates them; otherwise a
+       space seperates the sign from the value
+
+   The values for *_sign_posn:
+   0 - Parentheses surround value and symbol
+   1 - sign precedes value and symbol
+   2 - sign succeeds value and symbol
+   3 - sign immediately precedes symbol
+   4 - sign immediately succeeds symbol
+*/
+struct lconv
+{
+    char * decimal_point;      /* decimal point character                     */
+    char * thousands_sep;      /* character for seperating groups of digits   */
+    char * grouping;           /* string indicating the size of digit groups  */
+    char * mon_decimal_point;  /* decimal point for monetary quantities       */
+    char * mon_thousands_sep;  /* thousands_sep for monetary quantities       */
+    char * mon_grouping;       /* grouping for monetary quantities            */
+    char * positive_sign;      /* string indicating nonnegative mty. qty.     */
+    char * negative_sign;      /* string indicating negative mty. qty.        */
+    char * currency_symbol;    /* local currency symbol (e.g. '$')            */
+    char * int_curr_symbol;    /* international currency symbol (e.g. "USD"   */
+    char frac_digits;          /* fractional digits in local monetary qty.    */
+    char p_cs_precedes;        /* if currency_symbol precedes positive qty.   */
+    char n_cs_precedes;        /* if currency_symbol precedes negative qty.   */
+    char p_sep_by_space;       /* if it is seperated by space from pos. qty.  */
+    char n_sep_by_space;       /* if it is seperated by space from neg. qty.  */
+    char p_sign_posn;          /* positioning of positive_sign for mon. qty.  */
+    char n_sign_posn;          /* positioning of negative_sign for mon. qty.  */
+    char int_frac_digits;      /* Same as above, for international format     */
+    char int_p_cs_precedes;    /* Same as above, for international format     */
+    char int_n_cs_precedes;    /* Same as above, for international format     */
+    char int_p_sep_by_space;   /* Same as above, for international format     */
+    char int_n_sep_by_space;   /* Same as above, for international format     */
+    char int_p_sign_posn;      /* Same as above, for international format     */
+    char int_n_sign_posn;      /* Same as above, for international format     */
+}
+
+#ifndef _PDCLIB_NULL_DEFINED
+#define _PDCLIB_NULL_DEFINED _PDCLIB_NULL_DEFINED
+#define NULL _PDCLIB_NULL
+#endif
+
+/* LC_ALL
+   - entire locale
+   LC_COLLATE
+   - strcoll(), strxfrm()
+   LC_CTYPE
+   - <ctype.h>
+   LC_MONETARY
+   - monetary formatting as returned by localeconv
+   LC_NUMERIC
+   - decimal-point character for printf() / scanf() functions, string
+     conversions, and nonmonetary formattign as returned by localeconv
+   LC_TIME
+   - strftime(), wcsftime()
+
+   First arguments to setlocale().
+*/
+
+/* The category parameter can be any of the LC_* macros to specify if the call
+   to setlocale() shall affect the entire locale or only a portion thereof.
+   The category locale specifies which locale should be switched to, with "C"
+   being the minimal default locale, and "" being the locale-specific native
+   environment. A NULL pointer makes setlocale() return the *current* setting.
+   Otherwise, returns a pointer to a string associated with the specified
+   category for the new locale.
+*/
+char * setlocale( int category, const char * locale );
+
+/* Returns a struct lconv initialized to the values appropriate for the current
+   locale setting.
+*/
+struct lconv * localeconv( void );
+
+#endif
+
index b9a02249a717be07a28dd09fffdd9dd8c667de10..6b562d95bd6b5732730c1adaefcd220c6c0260b9 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* Input/output <stdio.h>
+/* 7.19 Input/output <stdio.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
index f84851b0df90d69aa27fbcdb0bd9a556b89e35cb..b035c9cfbbacdc0b692eb533fd7cdbc7e7cd844e 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* General utilities <stdlib.h>
+/* 7.20 General utilities <stdlib.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
index ef70df00ce952cd3f6054a01450ba135d57086f8..c5f74b5e50729bf3f97bedf149ca460fcba74285 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* String handling <string.h>
+/* 7.21 String handling <string.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
index e1b10f8299b46b0ab0b5e3ef916de86783ccc298..9b812c96d66f4dba17fc27b489b9686b4c971446 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* Signal handling <string.h>
+/* 7.14 Signal handling <string.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
index e1b10f8299b46b0ab0b5e3ef916de86783ccc298..9b812c96d66f4dba17fc27b489b9686b4c971446 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-/* Signal handling <string.h>
+/* 7.14 Signal handling <string.h>
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.