1Print_lib Module 2 3Andrei Pelinescu-Onciul 4 5 FhG FOKUS 6 7 Copyright © 2003 FhG FOKUS 8 __________________________________________________________________ 9 10 Table of Contents 11 12 1. Admin Guide 13 14 1. Overview 15 2. Functions 16 17 2.1. print_stderr(txt) 18 19 List of Examples 20 21 1.1. print_stderr usage 22 23Chapter 1. Admin Guide 24 25 Table of Contents 26 27 1. Overview 28 2. Functions 29 30 2.1. print_stderr(txt) 31 321. Overview 33 34 This is an example module. It implements only one function that prints 35 its string parameter to stderr (it won't work if server is started in 36 daemon mode). Its purpose is to show how to link to an internal library 37 (lib/print). 38 392. Functions 40 41 2.1. print_stderr(txt) 42 432.1. print_stderr(txt) 44 45 Prints string to stderr. 46 47 Meaning of the parameters is as follows: 48 * txt - string to be printed. 49 50 Example 1.1. print_stderr usage 51... 52print_stderr("The answer is 42\n"); 53... 54