Proven C Book한국어 GitHub

62 The standard library at a glance

What to know first

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

Looking back

Chapter 61 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 43).

The need for this chapter, and its context

Chapter 61 gave the character; this one gives the list. Laying out the full table before the close reading begins is how one avoids walking twenty-one 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 61′s landscape at a larger scale.

The questions this chapter answers

  1. How many of these are actually used often?

62.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 provide are only the following; the rest may or may not be there.

headerwhatnote
<float.h>the limits of real typesdefines values only
<limits.h>the limits of integer typesdefines values only
<stdarg.h>variadic argumentschapter 58
<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
<stdckdint.h>checked arithmeticadded in C23

Table 63.1

That C23 lengthened this list is worth noticing. The two that newly entered are pure computation needing no operating system, so they can be provided in a freestanding environment too, and what they do (counting bits and checking overflow) 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.

And a whole header being required differs from only some of its declarations being required — <string.h>, for example, is not freestanding-required, but if an implementation provides it the contracts inside must follow the standard.

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).

62.2 The whole list

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

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

Table 63.2

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 64). strncpy, contrary to its name, is not a safe copying function (chapter 65), and atoi has no way at all to report failure (chapter 66). Some functions of the same name even behave differently according to the locale (chapter 67). 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 eleven are guaranteed without an operating system (C23 added two)
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 63.3

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.