C Programming

Total Page:16

File Type:pdf, Size:1020Kb

C Programming C Programming en.wikibooks.org December 15, 2017 On the 28th of April 2012 the contents of the English as well as German Wikibooks and Wikipedia projects were licensed under Creative Commons Attribution-ShareAlike 3.0 Unported license. A URI to this license is given in the list of figures on page 277. If this document is a derived work from the contents of one of these projects and the content was still licensed by the project under this license at the time of derivation this document has to be licensed under the same, a similar or a compatible license, as stated in section 4b of the license. The list of contributors is included in chapter Contributors on page 257. The licenses GPL, LGPL and GFDL are included in chapter Licenses on page 281, since this book and/or parts of it may or may not be licensed under one or more of these licenses, and thus require inclusion of these licenses. The licenses of the figures are given in the list of figures on page 277. This PDF was generated by the LATEX typesetting software. The LATEX source code is included as an attachment (source.7z.txt) in this PDF file. To extract the source from the PDF file, you can use the pdfdetach tool including in the poppler suite, or the http://www. pdflabs.com/tools/pdftk-the-pdf-toolkit/ utility. Some PDF viewers may also let you save the attachment to a file. After extracting it from the PDF file you have to rename it to source.7z. To uncompress the resulting archive we recommend the use of http://www.7-zip.org/. The LATEX source itself was generated by a program written by Dirk Hünniger, which is freely available under an open source license from http://de.wikibooks.org/wiki/Benutzer:Dirk_Huenniger/wb2pdf. Contents 1 Why learn C? 3 2 History 7 3 What you need before you can learn 9 3.1 Getting Started ................................. 9 3.2 Footnotes .................................... 12 4 Using a Compiler 13 5 Beginning C 17 6 Intro exercise 19 6.1 The ”Hello, World!”Program .......................... 19 6.2 References .................................... 21 7 Preliminaries 23 7.1 Block Structure, Statements, Whitespace, and Scope . 23 7.2 Basics of Using Functions ........................... 25 7.3 The Standard Library ............................. 26 7.4 References .................................... 26 8 Compiling 27 8.1 Preprocessor ................................... 27 8.2 Syntax Checking ................................ 28 8.3 Object Code ................................... 28 8.4 Linking ...................................... 28 8.5 Automation ................................... 29 8.6 References .................................... 30 9 Structure and style 31 9.1 C Structure and Style ............................. 31 9.2 Introduction ................................... 31 9.3 Line Breaks and Indentation .......................... 32 9.4 Comments .................................... 34 9.5 References .................................... 37 10 Variables 39 10.1 Declaring, Initializing, and Assigning Variables . 39 10.2 Literals ...................................... 41 10.3 The Four Basic Data Types .......................... 41 III Contents 10.4 sizeof ..................................... 43 10.5 Data type modifiers ............................... 44 10.6 const qualifier ................................. 45 10.7 Magic numbers ................................. 45 10.8 Scope ....................................... 46 10.9 Other Modifiers ................................. 46 10.10 References .................................... 50 11 Error handling 51 11.1 Preventing divide by zero errors ........................ 52 11.2 Signals ...................................... 52 11.3 setjmp ...................................... 53 12 Simple Input and Output 55 12.1 Output using printf() ............................ 55 12.2 Other output methods ............................. 58 12.3 Input using scanf() .............................. 58 12.4 References .................................... 59 13 Simple math 61 13.1 Arithmetic Operators .............................. 61 13.2 Assignment Operators ............................. 62 13.3 Logical Operators ................................ 62 13.4 Relational and Equality Operators ...................... 63 13.5 Type Casting .................................. 64 13.6 The Shift Operators (which may be used to rotate bits) . 64 13.7 Bitwise Operators ................................ 66 13.8 Comma Operator ................................ 66 13.9 References .................................... 67 14 Further math 69 14.1 Trigonometric functions ............................ 69 14.2 Hyperbolic functions .............................. 70 14.3 Exponential and logarithmic functions .................... 71 14.4 Power functions ................................. 73 14.5 Nearest integer, absolute value, and remainder functions . 74 14.6 Error and gamma functions .......................... 76 14.7 References .................................... 77 15 Control 79 15.1 Conditionals ................................... 79 15.2 Loops ...................................... 86 15.3 One last thing: goto .............................. 90 15.4 Examples .................................... 91 15.5 References .................................... 92 16 Procedures and functions 93 16.1 More on functions ................................ 94 16.2 Writing functions in C ............................. 94 IV Contents 16.3 Using C functions ................................ 96 16.4 Functions from the C Standard Library .................... 97 16.5 Variable-length argument lists ......................... 99 16.6 References .................................... 101 17 Preprocessor 103 17.1 Directives .................................... 103 17.2 Useful Preprocessor Macros for Debugging . 113 18 Libraries 119 18.1 What to put in header files . 121 18.2 References .................................... 122 19 Standard libraries 123 19.1 History ...................................... 123 19.2 Design ...................................... 124 19.3 ANSI Standard ................................. 124 19.4 Common support libraries . 126 19.5 Compiler built-in functions . 126 19.6 POSIX standard library ............................ 126 19.7 References .................................... 127 20 File IO 129 20.1 Introduction ................................... 129 20.2 Streams ..................................... 129 20.3 Standard Streams ................................ 130 20.4 FILE pointers .................................. 130 20.5 Opening and Closing Files . 131 20.6 Other file access functions . 132 20.7 Functions that Modify the File Position Indicator . 133 20.8 Error Handling Functions . 135 20.9 Other Operations on Files . 136 20.10 Reading from Files ............................... 137 20.11 Writing to Files ................................. 145 20.12 References .................................... 153 21 Beginning exercises 155 21.1 Variables ..................................... 155 21.2 Simple I/O ................................... 156 21.3 Program Flow .................................. 156 21.4 Functions .................................... 157 21.5 Math ....................................... 157 21.6 Recursion .................................... 157 22 In-depth C ideas 161 23 Arrays 163 23.1 Arrays ...................................... 163 23.2 Strings ...................................... 165 V Contents 23.3 References .................................... 166 24 Pointers and arrays 167 24.1 Declaring pointers ................................ 168 24.2 Assigning values to pointers . 168 24.3 Pointer dereferencing .............................. 169 24.4 Pointers and Arrays ............................... 170 24.5 Pointers in Function Arguments . 173 24.6 Pointers and Text Strings . 173 24.7 Pointers to Functions .............................. 174 24.8 Practical use of function pointers in C . 175 24.9 Examples of pointer constructs . 177 24.10 sizeof ....................................... 178 24.11 External Links ................................. 180 25 Memory management 181 25.1 The malloc function .............................. 181 25.2 The calloc function .............................. 183 25.3 The realloc function ............................. 183 25.4 The free function ............................... 183 25.5 References .................................... 185 26 Strings 187 26.1 Syntax ...................................... 187 26.2 The <string.h> Standard Header . 188 26.3 Examples .................................... 201 26.4 References .................................... 201 27 Complex types 203 27.1 Data structures ................................. 203 27.2 Enumerations .................................. 204 28 Networking in UNIX 207 28.1 A simple client ................................. 207 28.2 A simple server ................................. 209 28.3 Useful network functions ............................ 210 28.4 FAQs ....................................... 210 29 Common practices 211 29.1 Dynamic multidimensional arrays . 211 29.2 Constructors and destructors . 213 29.3 Nulling freed pointers .............................. 214 29.4 Macro conventions ............................... 214 29.5 Further reading ................................. 215 30 C and beyond 217 31 Particularities of C 219 31.1 References .................................... 221 VI Contents 32 Language Overloading and Extensions 223 32.1 External links .................................
Recommended publications
  • Object Oriented Programming
    No. 52 March-A pril'1990 $3.95 T H E M TEe H CAL J 0 URN A L COPIA Object Oriented Programming First it was BASIC, then it was structures, now it's objects. C++ afi<;ionados feel, of course, that objects are so powerful, so encompassing that anything could be so defined. I hope they're not placing bets, because if they are, money's no object. C++ 2.0 page 8 An objective view of the newest C++. Training A Neural Network Now that you have a neural network what do you do with it? Part two of a fascinating series. Debugging C page 21 Pointers Using MEM Keep C fro111 (C)rashing your system. An AT Keyboard Interface Use an AT keyboard with your latest project. And More ... Understanding Logic Families EPROM Programming Speeding Up Your AT Keyboard ((CHAOS MADE TO ORDER~ Explore the Magnificent and Infinite World of Fractals with FRAC LS™ AN ELECTRONIC KALEIDOSCOPE OF NATURES GEOMETRYTM With FracTools, you can modify and play with any of the included images, or easily create new ones by marking a region in an existing image or entering the coordinates directly. Filter out areas of the display, change colors in any area, and animate the fractal to create gorgeous and mesmerizing images. Special effects include Strobe, Kaleidoscope, Stained Glass, Horizontal, Vertical and Diagonal Panning, and Mouse Movies. The most spectacular application is the creation of self-running Slide Shows. Include any PCX file from any of the popular "paint" programs. FracTools also includes a Slide Show Programming Language, to bring a higher degree of control to your shows.
    [Show full text]
  • Eee4120f Hpes
    Lecture 22 HDL Imitation Method, Benchmarking and Amdahl's for FPGAs Lecturer: HDL HDL Imitation Simon Winberg Amdahl’s for FPGA Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) HDL Imitation Method Using Standard Benchmarks for FPGAs Amdahl’s Law and FPGA or ‘C-before-HDL approach to starting HDL designs. An approach to ‘golden measures’ & quicker development void mymod module mymod (char* out, char* in) (output out, input in) { { out[0] = in[0]^1; out = in^1; } } The same method can work with Python, but C is better suited due to its typical use of pointer. This method can be useful in designing both golden measures and HDL modules in (almost) one go … It is mainly a means to validate that you algorithm is working properly, and to help get into a ‘thinking space’ suited for HDL. This method is loosely based on approaches for C→HDL automatic conversion (discussed later in the course) HDL Imitation approach using C C program: functions; variables; based on sequence (start to end) and the use of memory/registers operations VHDL / Verilog HDL: Implements an entity/module for the procedure C code converted to VHDL Standard C characteristics Memory-based Variables (registers) used in performing computation Normal C and C programs are sequential Specialized C flavours for parallel description & FPGA programming: Mitrion-C , SystemC , pC (IBM Parallel C) System Crafter, Impulse C , OpenCL FpgaC Open-source (http://fpgac.sourceforge.net/) – does generate VHDL/Verilog but directly to bit file Best to simplify this approach, where possible, to just one module at a time When you’re confident the HDL works, you could just leave the C version behind Getting a whole complex design together as both a C-imitating-HDL program and a true HDL implementation is likely not viable (as it may be too much overhead to maintain) Example Task: Implement an countup module that counts up on target value, increasing its a counter value on each positive clock edge.
    [Show full text]
  • Truffle/C Interpreter
    JOHANNES KEPLER UNIVERSITAT¨ LINZ JKU Faculty of Engineering and Natural Sciences Truffle/C Interpreter Master’s Thesis submitted in partial fulfillment of the requirements for the academic degree Diplom-Ingenieur in the Master’s Program Computer Science Submitted by Manuel Rigger, BSc. At the Institut f¨urSystemsoftware Advisor o.Univ.-Prof. Dipl.-Ing. Dr.Dr.h.c. Hanspeter M¨ossenb¨ock Co-advisor Dipl.-Ing. Lukas Stadler Dipl.-Ing. Dr. Thomas W¨urthinger Xiamen, April 2014 Contents I Contents 1 Introduction 3 1.1 Motivation . .3 1.2 Goals and Scope . .4 1.3 From C to Java . .4 1.4 Structure of the Thesis . .6 2 State of the Art 9 2.1 Graal . .9 2.2 Truffle . 10 2.2.1 Rewriting and Specialization . 10 2.2.2 Truffle DSL . 11 2.2.3 Control Flow . 12 2.2.4 Profiling and Inlining . 12 2.2.5 Partial Evaluation and Compilation . 12 2.3 Clang . 13 3 Architecture 14 3.1 From Clang to Java . 15 3.2 Node Construction . 16 3.3 Runtime . 16 4 The Truffle/C File 17 4.1 Truffle/C File Format Goals . 17 4.2 Truffle/C File Format 1 . 19 4.2.1 Constant Pool . 19 4.2.2 Function Table . 20 4.2.3 Functions and Attributes . 20 4.3 Truffle/C File Considerations and Comparison . 21 4.3.1 Java Class File and Truffle/C File . 21 4.3.2 ELF and Truffle/C File . 22 4.4 Clang Modification Truffle/C File . 23 Contents II 5 Truffle/C Data Types 25 5.1 Data Type Hierarchy: Boxing, Upcasts and Downcasts .
    [Show full text]
  • Fira Code: Monospaced Font with Programming Ligatures
    Personal Open source Business Explore Pricing Blog Support This repository Sign in Sign up tonsky / FiraCode Watch 282 Star 9,014 Fork 255 Code Issues 74 Pull requests 1 Projects 0 Wiki Pulse Graphs Monospaced font with programming ligatures 145 commits 1 branch 15 releases 32 contributors OFL-1.1 master New pull request Find file Clone or download lf- committed with tonsky Add mintty to the ligatures-unsupported list (#284) Latest commit d7dbc2d 16 days ago distr Version 1.203 (added `__`, closes #120) a month ago showcases Version 1.203 (added `__`, closes #120) a month ago .gitignore - Removed `!!!` `???` `;;;` `&&&` `|||` `=~` (closes #167) `~~~` `%%%` 3 months ago FiraCode.glyphs Version 1.203 (added `__`, closes #120) a month ago LICENSE version 0.6 a year ago README.md Add mintty to the ligatures-unsupported list (#284) 16 days ago gen_calt.clj Removed `/**` `**/` and disabled ligatures for `/*/` `*/*` sequences … 2 months ago release.sh removed Retina weight from webfonts 3 months ago README.md Fira Code: monospaced font with programming ligatures Problem Programmers use a lot of symbols, often encoded with several characters. For the human brain, sequences like -> , <= or := are single logical tokens, even if they take two or three characters on the screen. Your eye spends a non-zero amount of energy to scan, parse and join multiple characters into a single logical one. Ideally, all programming languages should be designed with full-fledged Unicode symbols for operators, but that’s not the case yet. Solution Download v1.203 · How to install · News & updates Fira Code is an extension of the Fira Mono font containing a set of ligatures for common programming multi-character combinations.
    [Show full text]
  • Concurrent Cilk: Lazy Promotion from Tasks to Threads in C/C++
    Concurrent Cilk: Lazy Promotion from Tasks to Threads in C/C++ Christopher S. Zakian, Timothy A. K. Zakian Abhishek Kulkarni, Buddhika Chamith, and Ryan R. Newton Indiana University - Bloomington, fczakian, tzakian, adkulkar, budkahaw, [email protected] Abstract. Library and language support for scheduling non-blocking tasks has greatly improved, as have lightweight (user) threading packages. How- ever, there is a significant gap between the two developments. In previous work|and in today's software packages|lightweight thread creation incurs much larger overheads than tasking libraries, even on tasks that end up never blocking. This limitation can be removed. To that end, we describe an extension to the Intel Cilk Plus runtime system, Concurrent Cilk, where tasks are lazily promoted to threads. Concurrent Cilk removes the overhead of thread creation on threads which end up calling no blocking operations, and is the first system to do so for C/C++ with legacy support (standard calling conventions and stack representations). We demonstrate that Concurrent Cilk adds negligible overhead to existing Cilk programs, while its promoted threads remain more efficient than OS threads in terms of context-switch overhead and blocking communication. Further, it enables development of blocking data structures that create non-fork-join dependence graphs|which can expose more parallelism, and better supports data-driven computations waiting on results from remote devices. 1 Introduction Both task-parallelism [1, 11, 13, 15] and lightweight threading [20] libraries have become popular for different kinds of applications. The key difference between a task and a thread is that threads may block|for example when performing IO|and then resume again.
    [Show full text]
  • Glocal Forum Presentation
    GLOCAL FORUM PRESENTATION UN HABITAT EXPERT GROUP MEETING ON STRATEGIES FOR CREATING URBAN YOUTH EMPLOYMENT : Solution for Urban Youth in Africa I - Glocal Forum experience on youth and governance 1. Glocal Forum The Glocal Forum is a Non-Governmental Organization created in 2001 working for a new balance between global and local forces by emphasizing the central role of cities in the world. Our vision, glocalization, is an innovative strategy focusing on global issues by empowering local communities. It is a reform of globalization that encourages global powers to have a broader respect for local powers and cultural diversity. Led by its president, Ambassador Uri Savir, the Glocal Forum promotes peacebuilding and development activities through city-to-city relationships, youth empowerment and information communication technology. The Glocal Forum believes that cities have a central role in international relations and that mayors are poised to become the new diplomats of our world. City leaders have the advantage of mobilizing the good will, energy and expertise of their civil societies to contribute to peaceful dialogue and cultural exchange. The organization supports city-to-city networks by connecting them to the resources of the private and public sector. The Glocal Forum utilizes this global coalition of international organizations and private sector companies to harness resources and address local needs. A primary goal of city-to-city cooperation is to build an environment in which divisions caused by conflict and hatred can be bridged with harmony and coexistence. The Glocal Forum uses the city- to-city model as a fresh approach to brokering peace in the Middle East.
    [Show full text]
  • The Next-Gen Apertis Application Framework 1 Contents
    The next-gen Apertis application framework 1 Contents 2 Creating a vibrant ecosystem ....................... 2 3 The next-generation Apertis application framework ........... 3 4 Application runtime: Flatpak ....................... 4 5 Compositor: libweston ........................... 6 6 Audio management: PipeWire and WirePlumber ............ 7 7 Session management: systemd ....................... 7 8 Software distribution: hawkBit ...................... 8 9 Evaluation .................................. 8 10 Focus on the development user experience ................ 12 11 Legacy Apertis application framework 13 12 High level implementation plan for the next-generation Apertis 13 application framework 14 14 Flatpak on the Apertis images ...................... 15 15 The Apertis Flatpak application runtime ................. 15 16 Implement a new reference graphical shell/compositor ......... 16 17 Switch to PipeWire for audio management ................ 16 18 AppArmor support ............................. 17 19 The app-store ................................ 17 20 As a platform, Apertis needs a vibrant ecosystem to thrive, and one of the 21 foundations of such ecosystem is being friendly to application developers and 22 product teams. Product teams and application developers are more likely to 23 choose Apertis if it offers flows for building, shipping, and updating applications 24 that are convenient, cheap, and that require low maintenance. 25 To reach that goal, a key guideline is to closely align to upstream solutions 26 that address those needs and integrate them into Apertis, to provide to appli- 27 cation authors a framework that is made of proven, stable, complete, and well 28 documented components. 29 The cornerstone of this new approach is the adoption of Flatpak, the modern 30 application system already officially supported on more than 20 Linux distribu- 1 31 tions , including Ubuntu, Fedora, Red Hat Enterprise, Alpine, Arch, Debian, 32 ChromeOS, and Raspian.
    [Show full text]
  • Contents of Lecture 4: Declarations
    Contents of Lecture 4: Declarations Implicint int Storage class specifiers Type specifiers Enumeration specifiers Type qualifiers Jonas Skeppstedt ([email protected]) Lecture 4 2014 1 / 39 Now obsolete: implicit int Sometimes you can see code such as: main() // invalid { } or even: #include <stdio.h> count; // invalid float x; In earlier versions of C one could skip the type, which then became int, and is called implicit int. Calling a function before its declaration also set its return type to int. It’s invalid C so don’t use it — but compilers often allow it... Jonas Skeppstedt ([email protected]) Lecture 4 2014 2 / 39 Storage class specifiers Last lecture we discussed the different kinds of storage durations. Now we will see how to specify some of them explicitly. Dynamic (important) and temporary (less important) storage duration are not specified by the programmer using any particular syntax but defined by the standard. The storage class specifiers are: typedef extern static _Thread_local auto register Of these typedef does not refer to any kind of storage duration — instead it introduces another name of a type and not a new type: typedef int num_t; int* p; num_t* q; p = q; // valid since p and q have the same type. Jonas Skeppstedt ([email protected]) Lecture 4 2014 3 / 39 Storage class specifiers: static at file scope static int count; /∗ initialized to zero. ∗/ static void init(void) { /∗ Do some initializations ... ∗/ } Used to make an identifier invisible outside the source file With static at file scope, there is no risk of name conflicts with other files.
    [Show full text]
  • ACCU 2015 “New” Features in C
    "New" Features in C ACCU 2015 “New” Features in C Dan Saks Saks & Associates www.dansaks.com 1 Abstract The first international standard for the C programming language was C90. Since then, two newer standards have been published, C99 and C11. C99 introduced a significant number of new features. C11 introduced a few more, some of which have been available in compilers for some time. Curiously, many of these added features don’t seem to have caught on. Many C programmers still program in C90. This session explains many of these “new” features, including declarations in for-statements, typedef redefinitions, inline functions, complex arithmetic, extended integer types, variable- length arrays, flexible array members, compound literals, designated initializers, restricted pointers, type-qualified array parameters, anonymous structures and unions, alignment support, non-returning functions, and static assertions. 2 Copyright © 2015 by Daniel Saks 1 "New" Features in C About Dan Saks Dan Saks is the president of Saks & Associates, which offers training and consulting in C and C++ and their use in developing embedded systems. Dan has written columns for numerous print publications including The C/C++ Users Journal , The C++ Report , Software Development , and Embedded Systems Design . He currently writes the online “Programming Pointers” column for embedded.com . With Thomas Plum, he wrote C++ Programming Guidelines , which won a 1992 Computer Language Magazine Productivity Award . He has also been a Microsoft MVP. Dan has taught thousands of programmers around the world. He has presented at conferences such as Software Development and Embedded Systems , and served on the advisory boards for those conferences.
    [Show full text]
  • Versa 8051 Mcus TB102 – Using Versa 8051 Include Files Rev 1.0
    Versa 8051 MCUs TB102 – Using Versa 8051 Include Files Rev 1.0 How to Use Include Files for Versa 8051 MCUs 1 Introduction For compilers/assemblers that do not allow long file names, the naming convention is as follows: This technical bulletin addresses the include files developed for each of Ramtron’s fast and flexible AAFFDDDD.EXT Versa 8051 microcontrollers. Include files contain code AA: The initials of the compiler or assembler, such as for the MCU’s special function registers (SFRs). This ML for the MetaLink Cross Assembler. code is compatible with most popular 8051 compilers and assemblers. FF: The family of the target device: RS for the Versa 8051 family. 2 Supported Compilers DDDD: The first digit grouping of the device name, for Currently, include files exist for the following 8051 example the VRS51L2070 will use 2070. compilers and assemblers: EXT: The extension for the target programming language, such as .H for the C language, or .inc for an • MetaLink Macro Assembler assembler. • RIDE 51 (RKit) MA51 Macro Assembler • RIDE 51 (RKit) RC51 C Compiler 3.2 Location and Installation • Keil µVision3 A51 Macro Assembler All the files are placed in a zipped folder labeled with • Keil µVision3 C51 C Compiler the device name (for example, VRS51L3074.ZIP). • SDCC (Small Device C Compiler) When downloaded, the necessary file(s) can be moved • ASX8051 cross assembler to two possible locations: If you are using a different compiler, apply one of the • The compiler/assembler source directory provided files as a template or contact Ramtron for • The folder of the current project assistance.
    [Show full text]
  • User's Manual
    rBOX610 Linux Software User’s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility for any infringements of patents or any third party’s rights, and any liability arising from such use. Axiomtek does not warrant or assume any legal liability or responsibility for the accuracy, completeness or usefulness of any information in this document. Axiomtek does not make any commitment to update the information in this manual. Axiomtek reserves the right to change or revise this document and/or product at any time without notice. No part of this document may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of Axiomtek Co., Ltd. Trademarks Acknowledgments Axiomtek is a trademark of Axiomtek Co., Ltd. ® Windows is a trademark of Microsoft Corporation. Other brand names and trademarks are the properties and registered brands of their respective owners. Copyright 2014 Axiomtek Co., Ltd. All Rights Reserved February 2014, Version A2 Printed in Taiwan ii Table of Contents Disclaimers ..................................................................................................... ii Chapter 1 Introduction ............................................. 1 1.1 Specifications ...................................................................................... 2 Chapter 2 Getting Started ......................................
    [Show full text]
  • 3.3 Release Notes
    Red Hat Software Collections 3 3.3 Release Notes Release Notes for Red Hat Software Collections 3.3 Last Updated: 2020-03-17 Red Hat Software Collections 3 3.3 Release Notes Release Notes for Red Hat Software Collections 3.3 Lenka Špačková Red Hat Customer Content Services [email protected] Jaromír Hradílek Red Hat Customer Content Services [email protected] Eliška Slobodová Red Hat Customer Content Services Legal Notice Copyright © 2019-2020 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
    [Show full text]