<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="https://code-reference.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://code-reference.com/feed.php">
        <title>Programming | Library | Reference - Code-Reference.com c</title>
        <description></description>
        <link>https://code-reference.com/</link>
        <image rdf:resource="https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-05-18T14:25:32+02:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://code-reference.com/c/arithmetic_operators?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/assert.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/compiler?rev=1360979271&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/complex.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/conio.h?rev=1360415761&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/constant?rev=1358463049&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/control_structures?rev=1358463006&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/ctype.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/datatypes?rev=1358857076&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/dos.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/errno.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/examples?rev=1708040902&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/float.h?rev=1708040902&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/graphics.h?rev=1708040902&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/inttypes.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/keywords?rev=1358818247&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/limits.h?rev=1708040904&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/locale.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/math.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/mysql?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/preprocessor?rev=1358518398&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/setjmp.h?rev=1708040904&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/signal.h?rev=1708040902&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/stdarg.h?rev=1708040904&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/stddef.h?rev=1708040904&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/stdio.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/stdlib.h?rev=1708040904&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/string.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/term.h?rev=1708040903&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/time.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/utime.h?rev=1708040902&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/wchar.h?rev=1708040905&amp;do=diff"/>
                <rdf:li rdf:resource="https://code-reference.com/c/wctype.h?rev=1360979759&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Programming | Library | Reference - Code-Reference.com</title>
        <link>https://code-reference.com/</link>
        <url>https://code-reference.com/ttps://code-reference.com/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://code-reference.com/c/arithmetic_operators?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>arithmetic operators</title>
        <link>https://code-reference.com/c/arithmetic_operators?rev=1708040903&amp;do=diff</link>
        <description>* (multiplicator) 

/ (dividing) 

% (modulo) ... e.g. rest of a number

+ -

++ --


example


#include &lt;stdio.h&gt;

int main (void) {
int x,y;
x=2;

x = x+1; // = 3
x = x++; // = 3
x = ++x; // = 3
x = +=x; // = 4
// and so on

/*
for the wired case of 
x = x+++x;
or 
x=x---x; 

that means 
x = x++ +x; 
and 
x = x-- -x;


also possible is

x = x- --x;
*/
}</description>
    </item>
    <item rdf:about="https://code-reference.com/c/assert.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>assert.h Overview</title>
        <link>https://code-reference.com/c/assert.h?rev=1708040905&amp;do=diff</link>
        <description>assert.h Overview
 Name                 Description              assert assert 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/compiler?rev=1360979271&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-02-16T02:47:51+02:00</dc:date>
        <title>compiler Overview</title>
        <link>https://code-reference.com/c/compiler?rev=1360979271&amp;do=diff</link>
        <description>compiler Overview
 Name                 Description              gcc gcc</description>
    </item>
    <item rdf:about="https://code-reference.com/c/complex.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>complex.h Overview</title>
        <link>https://code-reference.com/c/complex.h?rev=1708040903&amp;do=diff</link>
        <description>complex.h Overview
 Name                 Description              cabs cabs  cacos cacos  cacosh cacosh  carg carg  casin casin  casinh casinh  catan catan  catanh catanh  ccos ccos  ccosh ccosh  cexp cexp  cimag cimag  clog clog  conj conj  cpow cpow  cproj cproj  creal creal  csin csin  csinh csinh  csqrt csqrt  ctan ctan  ctanh ctanh 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/conio.h?rev=1360415761&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-02-09T14:16:01+02:00</dc:date>
        <title>c:conio.h</title>
        <link>https://code-reference.com/c/conio.h?rev=1360415761&amp;do=diff</link>
        <description>Library                 Description              cgets          Reads a string from the console.  clrscr         clears the screen and move the cursor to upper left corner  cprintf        prints formatted output to the screen.  cputs          Returns a string to the screen.  cscanf         reads input from the console and reformat it.  delline        delete the line containing the cursor and move all lines below it one line up. getch          prompts the user to press a character  getche        …</description>
    </item>
    <item rdf:about="https://code-reference.com/c/constant?rev=1358463049&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-01-17T23:50:49+02:00</dc:date>
        <title>Constants in C</title>
        <link>https://code-reference.com/c/constant?rev=1358463049&amp;do=diff</link>
        <description>constants
    #define</description>
    </item>
    <item rdf:about="https://code-reference.com/c/control_structures?rev=1358463006&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-01-17T23:50:06+02:00</dc:date>
        <title>control structures Overview</title>
        <link>https://code-reference.com/c/control_structures?rev=1358463006&amp;do=diff</link>
        <description>control structures Overview
 Name                 Description              break break  case case  continue continue  default default  do do  else else  for for  goto goto  if if  return return  switch switch  while while 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/ctype.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>ctype.h</title>
        <link>https://code-reference.com/c/ctype.h?rev=1708040905&amp;do=diff</link>
        <description>character classification
 Function                 Description                 isalnum        checks if char is alphanumeric        isalpha        checks if char is alphabetic          isascii        checks if char is an ascii char       isblank        checks if char is blank               iscntrl        checks if char is a control char      isdigit        checks if char is a digit             isgraph        checks if char is printing character except space (' ')            islower        checks…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/datatypes?rev=1358857076&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-01-22T13:17:56+02:00</dc:date>
        <title>datatypes Overview</title>
        <link>https://code-reference.com/c/datatypes?rev=1358857076&amp;do=diff</link>
        <description>datatypes Overview
 Name                 Description              auto auto  auto auto  bool bool  char char  const const  const const  double double  float float  int int  int8 int8  int8 int8  int8_t int8_t  int8_t int8_t  int16 int16  int16 int16  int16_t int16_t  int16_t int16_t  int32 int32  int32 int32  int32_t int32_t  int32_t int32_t  int64 int64  int64 int64  int64_t int64_t  int64_t int64_t  intmax_t intmax_t  intmax_t intmax_t  intptr_t intptr_t  intptr_t intptr_t  int_fast8_t int_fas…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/dos.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>dos.h Overview</title>
        <link>https://code-reference.com/c/dos.h?rev=1708040903&amp;do=diff</link>
        <description>dos.h Overview
 Name                 Description              delay delay  getdate getdate  gettime gettime  nosound nosound  setdate setdate  sleep sleep  sound sound 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/errno.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>errno.h Overview</title>
        <link>https://code-reference.com/c/errno.h?rev=1708040903&amp;do=diff</link>
        <description>errno.h Overview
 Name                 Description              edom edom  eilseq eilseq  erange erange  errno errno 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/examples?rev=1708040902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:22+02:00</dc:date>
        <title>examples in c</title>
        <link>https://code-reference.com/c/examples?rev=1708040902&amp;do=diff</link>
        <description>examples in c
 example code                Description             simple ftp scanner        Ftp Scanner             hostscanner        Host Scanner            MySQL Bruteforce   MySQL Bruteforce        Talk to a Modem    Talk to a Modem</description>
    </item>
    <item rdf:about="https://code-reference.com/c/float.h?rev=1708040902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:22+02:00</dc:date>
        <title>float.h Overview</title>
        <link>https://code-reference.com/c/float.h?rev=1708040902&amp;do=diff</link>
        <description>float.h Overview
 Name                 Description              dbl_dig dbl_dig  dbl_epsilon dbl_epsilon  dbl_mant_dig dbl_mant_dig  dbl_max dbl_max  dbl_max_exp dbl_max_exp  dbl_min dbl_min  dbl_min_exp dbl_min_exp  flt_dig flt_dig  flt_epsilon flt_epsilon  flt_mant_dig flt_mant_dig  flt_max flt_max  flt_max_exp flt_max_exp  flt_min flt_min  flt_min_exp flt_min_exp  flt_radix flt_radix  flt_rounds flt_rounds 
automatically generated overview ...

Change this page if you have a better descriptio…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/graphics.h?rev=1708040902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:22+02:00</dc:date>
        <title>c:graphics.h</title>
        <link>https://code-reference.com/c/graphics.h?rev=1708040902&amp;do=diff</link>
        <description>a Download of graphics.h is available as rar file</description>
    </item>
    <item rdf:about="https://code-reference.com/c/inttypes.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>inttypes.h Overview</title>
        <link>https://code-reference.com/c/inttypes.h?rev=1708040905&amp;do=diff</link>
        <description>inttypes.h Overview
 Name                 Description              imaxabs imaxabs  imaxdiv imaxdiv  strtoimax strtoimax  strtoumax strtoumax  wcstoimax wcstoimax  wcstoumax wcstoumax 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/keywords?rev=1358818247&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-01-22T02:30:47+02:00</dc:date>
        <title>Keywords in C 89/99</title>
        <link>https://code-reference.com/c/keywords?rev=1358818247&amp;do=diff</link>
        <description>C89 Keywords

	*  auto
	*  break
	*  case
	*  char
	*  const
	*  continue
	*  default
	*  do
	*  double
	*  else
	*  enum
	*  extern
	*  float
	*  for
	*  goto
	*  if
	*  int
	*  long
	*  register
	*  return
	*  short
	*  signed
	*  sizeof
	*  static
	*  struct
	*  switch
	*  typedef
	*  union
	*  unsigned
	*  void
	*  volatile
	*  while</description>
    </item>
    <item rdf:about="https://code-reference.com/c/limits.h?rev=1708040904&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:24+02:00</dc:date>
        <title>limits.h Overview</title>
        <link>https://code-reference.com/c/limits.h?rev=1708040904&amp;do=diff</link>
        <description>limits.h Overview
 Name                 Description              char_bit char_bit  char_max char_max  char_min char_min  int_max int_max  int_min int_min  long_max long_max  long_min long_min  schar_max schar_max  schar_min schar_min  shrt_max shrt_max  shrt_min shrt_min  uchar_max uchar_max  uchar_min uchar_min  uint_max uint_max  ulong_max ulong_max  ushrt_max ushrt_max 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/locale.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>locale.h Overview</title>
        <link>https://code-reference.com/c/locale.h?rev=1708040905&amp;do=diff</link>
        <description>locale.h Overview
 Name                 Description              lconv lconv  lc_all lc_all  lc_collate lc_collate  lc_ctype lc_ctype  lc_monetary lc_monetary  lc_numeric lc_numeric  lc_time lc_time  localeconv localeconv  setlocale setlocale 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/math.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>math.h</title>
        <link>https://code-reference.com/c/math.h?rev=1708040905&amp;do=diff</link>
        <description>Mathematical functions
 Library                 Description              acos        computes arc cosine                 asin        computes arc sine                 atan        computes arc tangent                 atan2        computes arc tangent, using signs to determine quadrants                 ceil        returns the nearest integer not less than the given value                 cos        computes cosine                 cosh        computes hyperbolic cosine                 exp        ret…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/mysql?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>MySQL</title>
        <link>https://code-reference.com/c/mysql?rev=1708040905&amp;do=diff</link>
        <description>MySQL Reference Overview
 Name          Description   mysql Overview mysql.h</description>
    </item>
    <item rdf:about="https://code-reference.com/c/preprocessor?rev=1358518398&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-01-18T15:13:18+02:00</dc:date>
        <title>Preprocessor</title>
        <link>https://code-reference.com/c/preprocessor?rev=1358518398&amp;do=diff</link>
        <description>#define
    #include
    #endif
    #ifdef
    #if
    #else
    #error
    #warning
    #pragma
    #ifndef
    #undef</description>
    </item>
    <item rdf:about="https://code-reference.com/c/setjmp.h?rev=1708040904&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:24+02:00</dc:date>
        <title>setjmp.h Overview</title>
        <link>https://code-reference.com/c/setjmp.h?rev=1708040904&amp;do=diff</link>
        <description>setjmp.h Overview
 Name                 Description              longjmp longjmp  setjmp setjmp 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/signal.h?rev=1708040902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:22+02:00</dc:date>
        <title>signal.h Overview</title>
        <link>https://code-reference.com/c/signal.h?rev=1708040902&amp;do=diff</link>
        <description>signal.h Overview
 Name                 Description              raise raise 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/stdarg.h?rev=1708040904&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:24+02:00</dc:date>
        <title>stdarg.h Overview</title>
        <link>https://code-reference.com/c/stdarg.h?rev=1708040904&amp;do=diff</link>
        <description>stdarg.h Overview
 Name                 Description              va_arg va_arg  va_copy va_copy  va_end va_end  va_list va_list  va_start va_start 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/stddef.h?rev=1708040904&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:24+02:00</dc:date>
        <title>stddef.h Overview</title>
        <link>https://code-reference.com/c/stddef.h?rev=1708040904&amp;do=diff</link>
        <description>stddef.h Overview
 Name                 Description              offsetof offsetof  ptrdiff_t ptrdiff_t  size_t size_t  wchar_t wchar_t 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/stdio.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>stdio.h</title>
        <link>https://code-reference.com/c/stdio.h?rev=1708040903&amp;do=diff</link>
        <description>Function                 Description                 BUFSIZ  (integer value) size of the buffer     clearerr      Clears end-of-file and error indicators for a stream    fclose        Close the current stream / file    feof          Checks for the end-of-file    ferror        Checks for a stream error    fflush        Synchronises an output stream with the actual file    fgetc         Reads a byte/char from a file stream    fgetpos       Gets the stream position indicator    fgets         Reads …</description>
    </item>
    <item rdf:about="https://code-reference.com/c/stdlib.h?rev=1708040904&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:24+02:00</dc:date>
        <title>stdlib.h</title>
        <link>https://code-reference.com/c/stdlib.h?rev=1708040904&amp;do=diff</link>
        <description>Numeric conversions
 Function                 Description                 atof        converts a string to a floating-point value    atoi        converts a string to a integer value    atol        converts a string to a long integer value    strtod      converts a string to a double value    strtol      converts a string to a long integer value    strtoul     converts a string to a unsigned integer value   
Mathematical functions
 Function                 Description                 abs        c…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/string.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>string.h Overview</title>
        <link>https://code-reference.com/c/string.h?rev=1708040903&amp;do=diff</link>
        <description>string.h Overview
 Name                 Description              memchr memchr  memcmp memcmp  memcpy memcpy  memmove memmove  memset memset  strcat strcat  strchr strchr  strcmp strcmp  strcoll strcoll  strcpy strcpy  strcspn strcspn  strerror strerror  strlen strlen  strncat strncat  strncmp strncmp  strncpy strncpy  strpbrk strpbrk  strrchr strrchr  strspn strspn  strstr strstr  strtok strtok  strxfrm strxfrm 
automatically generated overview ...

Change this page if you have a better descrip…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/term.h?rev=1708040903&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:23+02:00</dc:date>
        <title>term.h Overview</title>
        <link>https://code-reference.com/c/term.h?rev=1708040903&amp;do=diff</link>
        <description>term.h Overview
 Name                 Description              del_curterm del_curterm  putp putp  restartterm restartterm  setupterm setupterm  set_curterm set_curterm  tgetent tgetent  tgetflag tgetflag  tgetnum tgetnum  tgetstr tgetstr  tgoto tgoto  tigetflag tigetflag  tigetnum tigetnum  tigetstr tigetstr  tparm tparm  tputs tputs 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/time.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>time.h Overview</title>
        <link>https://code-reference.com/c/time.h?rev=1708040905&amp;do=diff</link>
        <description>time.h Overview
 Name                 Description              asctime asctime  clock clock  clocks_per_sec clocks_per_sec  clock_t clock_t  ctime ctime  difftime difftime  gmtime gmtime  localtime localtime  mktime mktime  strftime strftime  strptime strptime  time time  time_t time_t  tm tm  tm_hour tm_hour  tm_isdst tm_isdst  tm_mday tm_mday  tm_min tm_min  tm_mon tm_mon  tm_sec tm_sec  tm_wday tm_wday  tm_yday tm_yday  tm_year tm_year 
automatically generated overview ...

Change this page i…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/utime.h?rev=1708040902&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:22+02:00</dc:date>
        <title>utime.h Overview</title>
        <link>https://code-reference.com/c/utime.h?rev=1708040902&amp;do=diff</link>
        <description>utime.h Overview
 Name                 Description              utime utime 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
    <item rdf:about="https://code-reference.com/c/wchar.h?rev=1708040905&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-16T00:48:25+02:00</dc:date>
        <title>wchar.h Overview</title>
        <link>https://code-reference.com/c/wchar.h?rev=1708040905&amp;do=diff</link>
        <description>wchar.h Overview
 Name                 Description              btowc btowc  fgetwc fgetwc  fgetws fgetws  fputwc fputwc  fputws fputws  fwide fwide  fwprintf fwprintf  fwscanf fwscanf  getwc getwc  getwchar getwchar  iswalnum iswalnum  iswalpha iswalpha  iswcntrl iswcntrl  iswctype iswctype  iswdigit iswdigit  iswgraph iswgraph  iswlower iswlower  iswprint iswprint  iswpunct iswpunct  iswspace iswspace  iswupper iswupper  iswxdigit iswxdigit  mbrlen mbrlen  mbrtowc mbrtowc  mbsinit mbsinit  mbs…</description>
    </item>
    <item rdf:about="https://code-reference.com/c/wctype.h?rev=1360979759&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2013-02-16T02:55:59+02:00</dc:date>
        <title>wctype.h Overview</title>
        <link>https://code-reference.com/c/wctype.h?rev=1360979759&amp;do=diff</link>
        <description>wctype.h Overview
 Name                 Description              iswalnum iswalnum  iswalpha iswalpha  iswcntrl iswcntrl  iswctype iswctype  iswdigit iswdigit  iswgraph iswgraph  iswlower iswlower  iswprint iswprint  iswpunct iswpunct  iswspace iswspace  iswupper iswupper  iswxdigit iswxdigit  towctrans towctrans  towlower towlower  towupper towupper  wctrans wctrans  wctype wctype 
automatically generated overview ...

Change this page if you have a better description</description>
    </item>
</rdf:RDF>
