Skip to content

rderik/Cncurses

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cncurses

A system library wrapper for ncurses(3) to be used with Swift.

How to use

Add it as a dependency in your swift package manifest (Package.swift):

let package = Package(
    dependencies: [
        .package(url: "https://github.com/rderik/Cncurses.git", from: "0.1.0")
    ]
)

Now you can import it from your Swift files as a regular module, as make calls to ncurses(3) functions. For example:

import Cncurse

initscr()

addstr("hello")
refresh()
getch()

endwin()

About

A system library wrapper for ncurses to be used in Swift

Resources

License

Stars

Watchers

Forks

Packages

No packages published