<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.martin-prochnow.de/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://www.martin-prochnow.de/feed.php">
        <title>Martin Prochnow - development:cpp</title>
        <description></description>
        <link>https://www.martin-prochnow.de/</link>
        <image rdf:resource="https://www.martin-prochnow.de/_media/wiki/logo.png" />
       <dc:date>2026-04-18T12:35:54+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.martin-prochnow.de/development/cpp/index?rev=1760375811&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.martin-prochnow.de/development/cpp/makefile?rev=1440765431&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.martin-prochnow.de/development/cpp/same_fs?rev=1554038514&amp;do=diff"/>
                <rdf:li rdf:resource="https://www.martin-prochnow.de/development/cpp/time_diff?rev=1554038529&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.martin-prochnow.de/_media/wiki/logo.png">
        <title>Martin Prochnow</title>
        <link>https://www.martin-prochnow.de/</link>
        <url>https://www.martin-prochnow.de/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://www.martin-prochnow.de/development/cpp/index?rev=1760375811&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-10-13T17:16:51+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>C/C++</title>
        <link>https://www.martin-prochnow.de/development/cpp/index?rev=1760375811&amp;do=diff</link>
        <description>C/C++


	* Feststellen, ob sich zwei Dateien auf dem gleichen Dateisystem befinden
	* Makefile
	* Zeit-Differenzen




Links

	*  &lt;http://wiki.codeblocks.org/&gt;
	*  &lt;http://docs.wxwidgets.org/&gt;</description>
    </item>
    <item rdf:about="https://www.martin-prochnow.de/development/cpp/makefile?rev=1440765431&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2015-08-28T12:37:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Makefile</title>
        <link>https://www.martin-prochnow.de/development/cpp/makefile?rev=1440765431&amp;do=diff</link>
        <description>Makefile

Dies ist ein minimales Makefile, um ein C++-Projekt zu compilieren. Durch das Generieren der Dependencies werden auch Änderungen an Header-Dateien erkannt.


CXX = g++
CXXFLAGS ?= -g -Wall
DEFINES +=
INCLUDES +=
LIBRARIES +=
LDFLAGS :=

SRCDIR := src
BUILDDIR := build
TARGET := program

SOURCES := $(shell find $(SRCDIR) -type f -name &quot;*.cpp&quot;)
OBJECTS := $(patsubst $(SRCDIR)%, $(BUILDDIR)%, $(SOURCES:.cpp=.o))
DEPENDENCIES := $(OBJECTS:.o=.d)

all: $(OBJECTS)
	$(CXX) -o $(BUILDDIR)/$(TA…</description>
    </item>
    <item rdf:about="https://www.martin-prochnow.de/development/cpp/same_fs?rev=1554038514&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-03-31T13:21:54+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Feststellen, ob sich zwei Dateien auf dem gleichen Dateisystem befinden</title>
        <link>https://www.martin-prochnow.de/development/cpp/same_fs?rev=1554038514&amp;do=diff</link>
        <description>Feststellen, ob sich zwei Dateien auf dem gleichen Dateisystem befinden

Da das Kopieren der Daten beim Verschieben nur nötig ist, wenn sich das Ziel auf einer anderen Partition befindet - ansonsten kann man ja rename(2) benutzen - benötigt man eine Möglichkeit, festzustellen, ob sich Quelle und Ziel auf der gleichen Partition befinden. Ein Blick in die Man-Page von</description>
    </item>
    <item rdf:about="https://www.martin-prochnow.de/development/cpp/time_diff?rev=1554038529&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-03-31T13:22:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Zeit-Differenzen</title>
        <link>https://www.martin-prochnow.de/development/cpp/time_diff?rev=1554038529&amp;do=diff</link>
        <description>Zeit-Differenzen

Wenn man keine absoluten Zeiten braucht, sondern nur feststellen will, wieviel Zeit vergangen ist, sollte man die Funktion clock_gettime(2) benutzen. Wenn man für das Argument clk_id den Wert CLOCK_MONOTONIC nutzt, haben Änderungen der Systemzeit auch keinen Einfluss auf die Messung.</description>
    </item>
</rdf:RDF>
