changed: library file extension to gsc

This commit is contained in:
Sven Vogel 2024-06-23 14:21:21 +02:00
parent 17fceeff4b
commit f142f6dc30
6 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
import "def.gem" import "def.gsc"
type unsigned int: bool type unsigned int: bool

View File

@ -6,7 +6,7 @@
# | Generic Input/Output | # | Generic Input/Output |
# `----------------------------------------` # `----------------------------------------`
import "def.gem" import "def.gsc"
# platform specific handle to an I/O device # platform specific handle to an I/O device
# can be a file, buffer, window or something else # can be a file, buffer, window or something else

View File

@ -6,7 +6,7 @@
# | Memory Management | # | Memory Management |
# `----------------------------------------` # `----------------------------------------`
import "def.gem" import "def.gsc"
# Allocate `len` bytes of heap memory # Allocate `len` bytes of heap memory
# Returns a pointer to the memory as `ptr` # Returns a pointer to the memory as `ptr`

View File

@ -6,7 +6,7 @@
# | Operating System | # | Operating System |
# `----------------------------------------` # `----------------------------------------`
import "def.gem" import "def.gsc"
# Return a hard coded C string identifying the underlying operating system # Return a hard coded C string identifying the underlying operating system
# Will return one of the following: # Will return one of the following:

View File

@ -7,10 +7,10 @@
# `----------------------------------------` # `----------------------------------------`
# standard type definitions # standard type definitions
import "def.gem" import "def.gsc"
# I/O operations # I/O operations
import "io.gem" import "io.gsc"
# memory management # memory management
import "mem.gem" import "mem.gsc"