libweb/examples/html
Xavier Del Campo Romero c6083ca223
examples: Fix wrong library name
2023-10-25 14:10:52 +02:00
..
CMakeLists.txt Rename project from slweb to libweb 2023-10-11 00:07:13 +02:00
Makefile examples: Fix wrong library name 2023-10-25 14:10:52 +02:00
README.md Rename project from slweb to libweb 2023-10-11 00:07:13 +02:00
main.c Rename project from slweb to libweb 2023-10-11 00:07:13 +02:00

README.md

HTML serializer example

This example shows a minimal application that serializes a HTML file and writes it to standard output.

How to build

If using make(1), just run make from this directory.

If using CMake, examples are built by default when configuring the project from the top-level CMakeLists.txt.

How to run

Run the executable without any command line arguments. The following text should be written to the standard output:

<html>
        <head>
                <meta charset="UTF-8"/>
        </head>
        <body>testing libweb</body>
</html>