aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-13 00:25:08 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-13 00:44:33 +0200
commitd9f7c1d704dd4282e520b76b874c1eb54d3260fb (patch)
tree65603801a4bd6efae6a2f75050b6603690afea8d /doc
parentinfo: hfindex (diff)
downloadslibc-d9f7c1d704dd4282e520b76b874c1eb54d3260fb.tar.gz
slibc-d9f7c1d704dd4282e520b76b874c1eb54d3260fb.tar.bz2
slibc-d9f7c1d704dd4282e520b76b874c1eb54d3260fb.tar.xz
info: iso646
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/info/chap/language-facilities.texinfo78
-rw-r--r--doc/info/slibc.texinfo2
2 files changed, 80 insertions, 0 deletions
diff --git a/doc/info/chap/language-facilities.texinfo b/doc/info/chap/language-facilities.texinfo
new file mode 100644
index 0000000..a1e52b3
--- /dev/null
+++ b/doc/info/chap/language-facilities.texinfo
@@ -0,0 +1,78 @@
+@node Language facilities
+@chapter Language facilities
+
+
+
+@menu
+* Alternative tokens:: Alternative spellings of common operators.
+@end menu
+
+
+
+@node Alternative tokens
+@section Alternative tokens
+
+@hfindex iso646.h
+@cpindex Alternative tokens
+@cpindex Tokens, alternative
+The C90 standard was amended in 1995 to include
+alternative spellings of common operators, referred
+to as C alternative tokens.
+
+@table @code
+@item and
+@fnindex and
+@code{&&}
+
+@item and_eq
+@fnindex and_eq
+@code{&=}
+
+@item bitand
+@fnindex bitand
+@code{&}
+
+@item bitor
+@fnindex bitor
+@code{|}
+
+@item compl
+@fnindex compl
+@code{~}
+
+@item not
+@fnindex not
+@code{!}
+
+@item not_eq
+@fnindex not_eq
+@code{!=}
+
+@item or
+@fnindex or
+@code{||}
+
+@item or_eq
+@fnindex or_eq
+@code{|=}
+
+@item xor
+@fnindex xor
+@code{^}
+
+@item xor_eq
+@fnindex xor_eq
+@code{^=}
+@end table
+
+These alternative spellings are implemented as a
+group of macro constants, and are made available
+by including the header file @file{<iso646.h>}.
+They were added because a concern that the standard
+names are difficult to type on some keyboard-layouts.
+
+Use of these alternative tokens are discouraged,
+they lessen the readability of your code. If it is
+difficult to type some characters without yout
+keyboard-layout, it is better to change keyboard-layout.
+
diff --git a/doc/info/slibc.texinfo b/doc/info/slibc.texinfo
index fef3a1b..8a57a2f 100644
--- a/doc/info/slibc.texinfo
+++ b/doc/info/slibc.texinfo
@@ -291,6 +291,7 @@ Stockholm C Standard Library.
@menu
* Introduction:: Introduction to @command{slibc} and this manual.
+* Language facilities:: C language facilities provided by the library.
* Free Software Needs Free Documentation:: Why free documentation is important.
* GNU General Public License:: Copying and sharing @command{slibc}.
@@ -310,6 +311,7 @@ Stockholm C Standard Library.
@include chap/introduction.texinfo
+@include chap/language-facilities.texinfo