aboutsummaryrefslogtreecommitdiffstats
path: root/source/lang/unsignedchar.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-12-03 20:18:00 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-12-03 20:18:00 -0500
commit210f3d2b1555bae87c9de27ea145e16d3bddb0f8 (patch)
tree5e409fff948c9a1847d08e5ec34f905ea2212956 /source/lang/unsignedchar.rst
parent11573d0fca18ef2ccd965ab67d419afd48b7cef2 (diff)
downloadlibrambutan-210f3d2b1555bae87c9de27ea145e16d3bddb0f8.tar.gz
librambutan-210f3d2b1555bae87c9de27ea145e16d3bddb0f8.zip
cleaning up previous commits.
note that addition of new files under docs/source/lang/api and docs/source/lang/cpp which were just copies of files in docs/source/lang/ imply that change history is lost to git.
Diffstat (limited to 'source/lang/unsignedchar.rst')
-rw-r--r--source/lang/unsignedchar.rst33
1 files changed, 0 insertions, 33 deletions
diff --git a/source/lang/unsignedchar.rst b/source/lang/unsignedchar.rst
deleted file mode 100644
index 5b946ed..0000000
--- a/source/lang/unsignedchar.rst
+++ /dev/null
@@ -1,33 +0,0 @@
-.. highlight:: cpp
-
-.. _lang-unsignedchar:
-
-``unsigned char``
-=================
-
-An unsigned version of the :ref:`char <lang-char>` data type. An
-``unsigned char`` occupies 1 byte of memory; it stores an integer from
-0 to 255.
-
-Like an :ref:`unsigned int <lang-unsignedint>`, an ``unsigned char``
-won't store negative numbers; it is also subject to the same
-:ref:`overflow issues <lang-int-overflow>` as any integral data type.
-
-Example
--------
-
-::
-
- unsigned char c = 240;
-
-See Also
---------
-
-
-- :ref:`byte <lang-byte>`
-- :ref:`int <lang-int>`
-- :ref:`array <lang-array>`
-- :ref:`SerialUSB.println() <lang-serialusb-println>`
-- :ref:`Serial.println() <lang-serial-println>`
-
-.. include:: cc-attribution.txt