.. default-domain:: chpl

.. module:: SysCTypes

SysCTypes
=========
.. type:: type c_int = integral

   The type corresponding to the C int type 

.. type:: type c_uint = integral

   The type corresponding to the C uint type 

.. type:: type c_long = integral

   The type corresponding to the C long type 

.. type:: type c_ulong = integral

   The type corresponding to the C unsigned long type 

.. type:: type c_longlong = integral

   The type corresponding to the C long long type 

.. type:: type c_ulonglong = integral

   The type corresponding to the C unsigned long long type 

.. type:: type c_char = integral

   The type corresponding to the C char type 

.. type:: type c_schar = integral

   The type corresponding to the C signed char type 

.. type:: type c_uchar = integral

   The type corresponding to the C unsigned char type 

.. type:: type c_short = integral

   The type corresponding to the C short type 

.. type:: type c_ushort = integral

   The type corresponding to the C unsigned short type 

.. type:: type c_intptr = integral

   The type corresponding to the C intptr_t type 

.. type:: type c_uintptr = integral

   The type corresponding to the C uintptr_t type 

.. type:: type c_ptrdiff = integral

   The type corresponding to the C ptrdiff_t type 

.. type:: type ssize_t = integral

   The type corresponding to the C ssize_t type 

.. type:: type size_t = integral

   The type corresponding to the C size_t type 

