Proven C Book←↑→

67 The standard library at a glance

What to know first

chapter 66, The terrain of the standard library · the character of the standard library

Looking back

Chapter 66 said the standard library is “thin and old”, and that the standard pins down not only the grammar but the list of libraries and the contract of each function. Then exactly how many headers are there, and how has that list grown?

A. Thirty-one as of C23. C89 began with fifteen, C95 added two concerning wide characters, C99 nine, C11 five, and C23 a few more. That the speed of growth is almost the same as the language’s speed of change tells the character of this list — once something enters it stays effectively forever, and so it takes long to let anything in. It is the other side of the story of gets’s funeral taking decades (chapter 44).

The need for this chapter, and its context

Chapter 66 gave the character; this one gives the list. Laying out the full table before the close reading begins is how one avoids walking twenty-two chapters without a guide. Which header arrived in which edition, and which can be used with no operating system — these two axes recur in every chapter that follows.

By the end of this chapter

We spread into a table every header the C standard settles, without missing one. Which header entered in which edition, what can be used even without an operating system, and in what order the remaining chapters of this part walk those regions. It is the chapter that redraws chapter 66′s landscape at a larger scale.

The questions this chapter answers

  1. How many of these are actually used often?

67.1 Freestanding and hosted — two worlds#

The standard divides implementations in two. A hosted implementation is the ordinary environment running on top of an operating system, and a freestanding implementation is an environment with no operating system — firmware, a kernel, a bootloader.

The difference between the two is exactly the difference in the header list. The headers a freestanding implementation must accept are the following ten (nine through C11); the rest may or may not be there — though C23 added parts of headers on top. We pick that up after the table.

headerwhatnote
<float.h>the limits of real typesdefines values only
<limits.h>the limits of integer typesdefines values only
<stdarg.h>variadic argumentschapter 63
<stdbool.h>boolC99. effectively unnecessary in C23
<stddef.h>size_t, NULL, offsetofthe most basic of the basics
<stdint.h>fixed-width integersC99
<stdalign.h>alignas, alignofC11. keywords in C23
<stdnoreturn.h>noreturnC11. to be retired in C23
<iso646.h>alternative spellings such as and, orC95
<stdbit.h>bit manipulationadded in C23

Table 67.1 — The standard headers at a glance

That C23 lengthened this list is worth noticing. The newcomer <stdbit.h> is pure computation needing no operating system, so it can be provided in a freestanding environment too, and what it does (counting bits) is especially handy in embedded work. That the list grows in the direction of “what works without an OS” shows this division’s character too.

★ The similarly named <stdckdint.h> (checked arithmetic, chapter 86) is not on this list. C23 added exactly one header to C11′s nine — <stdbit.h> — and its other addition is not a whole header but the “require only part of one” of the next paragraph.

And a whole header being required differs from only some of its declarations being required. C23 uses that second way. Beyond the ten headers above, §4p7 requires <string.h> — minus six functions (strcoll, strdup, strerror, strndup, strtok, strxfrm) — and from <stdlib.h> requires exactly one function, memalignment. Look at the six that were taken out and the reason shows: they lean on the locale (strcoll, strxfrm, strerror), they need an allocator (strdup, strndup), or they carry hidden state (strtok). It is the list with only what cannot be done without an OS taken out.

Floating point is conditional too. If an implementation defines __STDC_IEC_60559_BFP__ or __STDC_IEC_60559_DFP__, then <fenv.h>, <math.h> and the strto* family must be usable in freestanding as well (§4p8).

That this list is short is the background of this whole book — in embedded work neither printf nor malloc is a given (Part XII’s freestanding story begins here).

67.2 The whole list#

Every header the standard settles. “Edition” is the edition in which that header entered the standard, and the chapter that treats it is written alongside — sometimes a chapter outside this part.

headereditionwhat it holdswhere it is covered
<assert.h>C89assert — the diagnosis that catches contract violationschapter 80
<complex.h>C99complex arithmeticchapter 83
<ctype.h>C89character classification and conversionchapter 72
<errno.h>C89the error-number globalchapter 80
<fenv.h>C99the floating-point environment (rounding, exceptions)chapter 78
<float.h>C89the limits of real typeschapters 28 and 78
<inttypes.h>C99formats and conversions for fixed-width integersappendix B, chapter 83
<iso646.h>C95alternative spellings of operatorschapter 83
<limits.h>C89the limits of integer typeschapter 28
<locale.h>C89locale settingschapters 73–74
<math.h>C89mathematical functionschapter 78
<setjmp.h>C89non-local jumpschapter 82
<signal.h>C89signal handlingchapter 81
<stdalign.h>C11specifying and querying alignmentchapter 87
<stdarg.h>C89variadic argumentschapter 63
<stdatomic.h>C11atomic operationschapter 85
<stdbit.h>C23bit manipulation (counting, rotating and so on)chapter 51
<stdbool.h>C99bool, true, falsechapter 87
<stdckdint.h>C23arithmetic that checks for overflowchapters 54 and 86
<stddef.h>C89size_t, ptrdiff_t, NULL, offsetofchapter 27
<stdint.h>C99fixed-width integer typeschapters 28 and 83
<stdio.h>C89stream input and output, fileschapters 56 and 69
<stdlib.h>C89conversion, random numbers, allocation, sorting, program terminationchapter 71
<stdnoreturn.h>C11noreturnchapter 83
<string.h>C89strings and memory blockschapter 70
<tgmath.h>C99type-generic mathematical functionschapter 78
<threads.h>C11threads, mutexes, condition variableschapter 84
<time.h>C89time and the calendarchapter 79
<uchar.h>C11UTF-16 and UTF-32 character typeschapter 75
<wchar.h>C95wide-character input, output and stringschapters 75–76
<wctype.h>C95wide-character classificationchapter 72

Table 67.2 — Headers added by edition

Q. How many of these are actually used often?

A. Most programs live on about five — <stdio.h>, <stdlib.h>, <string.h>, <stdint.h>, and as needed <math.h> or <time.h>. The rest are things you “know exist and look up when needed”. So this part’s aim too is not memorising but keeping the whole shape in your head — roughly where what is, and which regions are slippery.

A common misconception. “If it is in the standard library it is a safe and portable function”

Being in the standard means it is everywhere, not it is safe. gets was in the 1989 standard and was deleted only in 2011 (chapter 69). strncpy, contrary to its name, is not a safe copying function (chapter 70), and atoi has no way at all to report failure (chapter 71). Some functions of the same name even behave differently according to the locale (chapter 72). Using the standard library means not “using what has been verified” but “using what has a stated contract”, and reading that contract is still our part.

In practice. The accident one header called down — <strings.h> is not standard

There is a place confusable by similarity of name. <string.h> is standard but <strings.h> (plural) is POSIX. Functions such as strcasecmp and bzero are in there, so code using it does not compile on Windows. Conversely strlcpy and strlcat came out of OpenBSD and spread to several Unixes but were not standard — only in C23 were functions of similar intent so much as discussed. The guess “it is used a lot, so it must be standard” is a common beginning of portability accidents.

Recap

to rememberthe point
number of headersthirty-one as of C23. grown from C89′s fifteen
freestandingonly ten headers are guaranteed without an operating system (C23 added one, <stdbit.h>, to C11′s nine)
speed of enteringslow. the speed of leaving is slower
standard = safeno. standard = the contract is written down
<strings.h>not standard (POSIX). do not be fooled by the name

Table 67.3 — The terrain of the standard library — what to remember

The shape is laid out, so we walk. The next two chapters are the region used the most and slipped in the most — stream input and output.