Skip to content

Zig time & date library based on the C `time.h`.

Notifications You must be signed in to change notification settings

Remy2701/timestamp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Timestamp

This library is a date & time library based on the C time.h.
Keep in mind that this library links with LibC!

Installation

Clone this repository in your libs folder.

git clone https://github.com/Remy2701/timestamp

Then add the following line in the build.zig:

const timestamp = @import("libs/timestamp/build.zig");

pub fn build(b: *Build) !void {
    ...
    exe.addModule("timestamp", timestamp.module(b));
    try timestamp.link(exe);
}

Usage

const std = @import("std");
const timestamp = @import("timestamp");
const Timestamp = timestamp.Timestamp;

pub fn main() void {
    // Get the current UTC time & date
    const utc_now = Timestamp.now_utc();
    std.debug.print("{}/{}/{} {}:{}:{}\n", .{
        utc_now.date.month_day,
        @enumToInt(utc_now.date.month),
        utc_now.date.year,

        utc_now.time.hour,
        utc_now.time.minute,
        utc_now.time.second
    });

    // Get the current local time & date
    const local_now = Timestamp.now_local();
    std.debug.print("{}/{}/{} {}:{}:{}\n", .{
        local_now.date.month_day,
        @enumToInt(local_now.date.month),
        local_now.date.year,

        local_now.time.hour,
        local_now.time.minute,
        local_now.time.second
    });
}

About

Zig time & date library based on the C `time.h`.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages