Popularity
5.1
Declining
Activity
0.0
Stable
17
5
2

Programming language: Crystal
License: MIT License
Tags: Misc    

syscall.cr alternatives and similar shards

Based on the "Misc" category.
Alternatively, view syscall.cr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of syscall.cr or a related project?

Add another 'Misc' Shard

README

syscall.cr Build Status

Raw syscall interface for Crystal. Linux/OSX with x86_64 support only.

Example

include Syscall

str = "Hello!\n"
syscall(WRITE, 1_u64, str.to_unsafe, str.bytesize.to_u64)