writing reading and printing functions
This commit is contained in:
@ -98,10 +98,12 @@ enum qse_scm_errnum_t
|
||||
|
||||
QSE_SCM_EIO,
|
||||
QSE_SCM_EENDSTR,
|
||||
QSE_SCM_ESHARP,
|
||||
QSE_SCM_EDOT,
|
||||
|
||||
QSE_SCM_EINTERN,
|
||||
QSE_SCM_ESYNTAX,
|
||||
QSE_SCM_ELSTDEEP,
|
||||
QSE_SCM_ELPAREN,
|
||||
QSE_SCM_ERPAREN,
|
||||
QSE_SCM_EARGBAD,
|
||||
QSE_SCM_EARGFEW,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: types.h 384 2011-02-04 15:47:53Z hyunghwan.chung $
|
||||
* $Id: types.h 389 2011-02-25 15:26:16Z hyunghwan.chung $
|
||||
*
|
||||
Copyright 2006-2009 Chung, Hyung-Hwan.
|
||||
This file is part of QSE.
|
||||
@ -288,6 +288,18 @@ typedef qse_int_t qse_ssize_t;
|
||||
*/
|
||||
typedef qse_uint_t qse_word_t;
|
||||
|
||||
/**
|
||||
* The qse_uintptr_t redefines qse_uint_t to indicate that you are dealing
|
||||
* with a pointer.
|
||||
*/
|
||||
typedef qse_uint_t qse_uintptr_t;
|
||||
|
||||
/**
|
||||
* The qse_untptr_t redefines qse_int_t to indicate that you are dealing
|
||||
* with a pointer.
|
||||
*/
|
||||
typedef qse_int_t qse_intptr_t;
|
||||
|
||||
/** @typedef qse_real_t
|
||||
* The qse_real_t type defines the largest floating-pointer number type
|
||||
* supported.
|
||||
|
Reference in New Issue
Block a user