C standard library
The C standard library, sometimes referred to as libc,[1] is the standard library for the C programming language, as specified in the ISO C standard.[2] Starting from the original ANSI C standard, it was developed at the same time as the C POSIX library, which is a superset of it.[3] Since ANSI C was adopted by the International Organization for Standardization,[4] the C standard library is also called the ISO C library.[5] The C standard library provides macros, type definitions and functions for tasks such as string manipulation, mathematical computation, input/output processing, memory management, and input/output. Application programming interface (API)Header filesThe application programming interface (API) of the C standard library is declared in a number of header files. Each header file contains one or more function declarations, data type definitions, and macros. After a long period of stability, three new header files (
Three of the header files ( The POSIX standard added several nonstandard C headers for Unix-specific functionality. Many have found their way to other architectures. Examples include DocumentationOn Unix-like systems, the authoritative documentation of the API is provided in the form of man pages. On most systems, man pages on standard library functions are in section 3; section 7 may contain some more generic pages on underlying concepts (e.g. ImplementationsUnix-like systems typically have a C library in shared library form, but the header files (and compiler toolchain) may be absent from an installation so C development may not be possible. The C library is considered part of the operating system on Unix-like systems; in addition to functions specified by the C standard, it includes other functions that are part of the operating system API, such as functions specified in the POSIX standard. The C library functions, including the ISO C standard ones, are widely used by programs, and are regarded as if they were not only an implementation of something in the C language, but also de facto part of the operating system interface. Unix-like operating systems generally cannot function if the C library is erased. This is true for applications which are dynamically as opposed to statically linked. Further, the kernel itself (at least in the case of Linux) operates independently of any libraries. On Microsoft Windows, the core system dynamic libraries (DLLs) provide an implementation of the C standard library for the Microsoft Visual C++ compiler v6.0; the C standard library for newer versions of the Microsoft Visual C++ compiler is provided by each compiler individually, as well as redistributable packages. Compiled applications written in C are either statically linked with a C library, or linked to a dynamic version of the library that is shipped with these applications, rather than relied upon to be present on the targeted systems. Functions in a compiler's C library are not regarded as interfaces to Microsoft Windows. Many C library implementations exist, provided with both various operating systems and C compilers. Some of the popular implementations are the following:
Compiler built-in functionsSome compilers (for example, GCC[8]) provide built-in versions of many of the functions in the C standard library; that is, the implementations of the functions are written into the compiled object file, and the program calls the built-in versions instead of the functions in the C library shared object file. This reduces function-call overhead, especially if function calls are replaced with inline variants, and allows other forms of optimization (as the compiler knows the control-flow characteristics of the built-in variants), but may cause confusion when debugging (for example, the built-in versions cannot be replaced with instrumented variants). However, the built-in functions must behave like ordinary functions in accordance with ISO C. The main implication is that the program must be able to create a pointer to these functions by taking their address, and invoke the function by means of that pointer. If two pointers to the same function are derived in two different translation units in the program, these two pointers must compare equal; that is, the address comes by resolving the name of the function, which has external (program-wide) linkage. Linking, libmUnder FreeBSD[9] and glibc,[10] some functions such as sin() are not linked in by default and are instead bundled in the mathematical library libm. If any of them are used, the linker must be given the directive DetectionAccording to the C standard the macro Problems and workaroundsBuffer overflow vulnerabilitiesSome functions in the C standard library have been notorious for having buffer overflow vulnerabilities and generally encouraging buggy programming ever since their adoption.[13][a] The most criticized items are:
Except the extreme case with The ISO C committee published Technical reports TR 24731-1[14] and is working on TR 24731-2[15] to propose adoption of some functions with bounds checking and automatic buffer allocation, correspondingly. The former has met severe criticism with some praise,[16][17] and the latter saw mixed response. Despite concerns, TR 24731-1 was integrated into the C standards track in ISO/IEC 9899:2011 (C11), Annex K (Bounds-checking interfaces), and implemented approximately in Microsoft’s C/++ runtime (CRT) library for the Win32 and Win64 platforms. (By default, Microsoft Visual Studio’s C and C++ compilers issue warnings when using older, "insecure" functions. However, Microsoft’s implementation of TR 24731-1 is subtly incompatible with both TR 24731-1 and Annex K,[18] so it’s common for portable projects to disable or ignore these warnings. They can be disabled directly by issuing #pragma warning(disable : 4996)
before/around the call site[s] in question, or indirectly by issuing #define _CRT_SECURE_NO_WARNINGS 1
before including any headers.[19] Command-line option Threading problems, vulnerability to race conditionsThe Error handlingThe error handling of the functions in the C standard library is not consistent and sometimes confusing. According to the Linux manual page StandardizationThe original C language provided no built-in functions such as I/O operations, unlike traditional languages such as COBOL and Fortran.[citation needed] Over time, user communities of C shared ideas and implementations of what is now called C standard libraries. Many of these ideas were incorporated eventually into the definition of the standardized C language. Both Unix and C were created at AT&T's Bell Laboratories in the late 1960s and early 1970s. During the 1970s the C language became increasingly popular. Many universities and organizations began creating their own variants of the language for their own projects. By the beginning of the 1980s compatibility problems between the various C implementations became apparent. In 1983 the American National Standards Institute (ANSI) formed a committee to establish a standard specification of C known as "ANSI C". This work culminated in the creation of the so-called C89 standard in 1989. Part of the resulting standard was a set of software libraries called the ANSI C standard library. POSIX standard libraryPOSIX, as well as SUS, specify a number of routines that should be available over and above those in the basic C standard library. The POSIX specification includes header files for, among other uses, multi-threading, networking, and regular expressions. These are often implemented alongside the C standard library functionality, with varying degrees of closeness. For example, glibc implements functions such as BSD libcBSD libc is a superset of the POSIX standard library supported by the C libraries included with BSD operating systems such as FreeBSD, NetBSD, OpenBSD and macOS. BSD libc has some extensions that are not defined in the original standard, many of which first appeared in 1994's 4.4BSD release (the first to be largely developed after the first standard was issued in 1989). Some of the extensions of BSD libc are:
The C standard library in other languagesSome languages include the functionality of the standard C library in their own libraries. The library may be adapted to better suit the language's structure, but the operational semantics are kept similar. C++The C++ language incorporates the majority of the C standard library’s constructs into its own, excluding C-specific machinery. C standard library functions are exported from the C++ standard library in two ways.
For backwards-/cross-compatibility to C and pre-Standard C++, functions can be accessed in the global namespace (::), after #include <stdio.h>
int main() {
return ::puts("Hello, world!") == EOF;
}
should exhibit (apparently-)identical behavior to C95 program #include <stdio.h>
int main(void) {
return puts("Hello, world!") == EOF;
}
From C++98 on, C functions are also made available in namespace ::std (e.g., C printf as C++ ::std::printf, atoi as ::std::atoi, feof as ::std::feof), by including header Thus, an equivalent (generally preferable) C++≥98 program to the above two is: #include <cstdio>
int main() {
return std::puts("Hello, world") == EOF;
}
A A few of the C++≥98 versions of C’s headers are missing; e.g., C≥11 <stdnoreturn.h> and <threads.h> have no C++ counterparts.[44] Others are reduced to placeholders, such as (until C++20) <ciso646> for C95 <iso646.h>, all of whose requisite macros are rendered as keywords in C++98. C-specific syntactic constructs aren’t generally supported, even if their header is.[45] Several C headers exist primarily for C++ compatibility, and these tend to be near-empty in C++. For example, C99–17 <stdbool.h> require only #define bool _Bool
#define false 0
#define true 1
#define __bool_true_false_are_defined 1
in order to feign support for the C++98 bool, false, and true keywords in C. C++11 requires <stdbool.h> and <cstdbool> for compatibility, but all they need to define is __bool_true_false_are_defined. C23 obsoletes older _Bool keyword in favor of new, C++98-equivalent bool, false, and true keywords, so the C≥23 and C++≥11 <stdbool.h>/<cstdbool> headers are fully equivalent. (In particular, C23 doesn’t require any __STDC_VERSION_BOOL_H__ macro for <stdbool.h>.) Access to C library functions via namespace ::std and the C++≥98 header names is preferred where possible. To encourage adoption, C++98 obsoletes the C (*.h) header names, so it’s possible that use of C compatibility headers will cause an especially strict C++98–20 preprocessor to raise a diagnostic of some sort. However, C++23 (unusually) de-obsoletes these headers, so newer C++ implementations/modes shouldn’t complain without being asked to specifically.[46]
PythonCPython includes wrappers for some of the C library functions in its own common library, and it also grants more direct access to C functions and variables via its ctypes package.[47] More generally, Python 2.x specifies the built-in file objects as being “implemented using C's stdio package,"[48] and frequent reference is made to C standard library behaviors; the available operations ( Python 3’s specification relies considerably less on C specifics than Python 2, however. RustRust offers crate libc, which allows various C standard (and other) library functions and type definitions to be used.[49] Comparison to standard libraries of other languagesThe C standard library is small compared to the standard libraries of some other languages. The C library provides a basic set of mathematical functions, string manipulation, type conversions, and file and console-based I/O. It does not include a standard set of "container types" like the C++ Standard Template Library, let alone the complete graphical user interface (GUI) toolkits, networking tools, and profusion of other functionality that Java and the .NET Framework provide as standard. The main advantage of the small standard library is that providing a working ISO C environment is much easier than it is with other languages, and consequently porting C to a new platform is comparatively easy. See alsoNotes
References
Further reading
External links
|
Portal di Ensiklopedia Dunia