aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
AgeCommit message (Collapse)AuthorFilesLines
2005-03-31Implemented the C API "background" for the packages system of Jim.antirez1-2/+4
2005-03-05delProc callback added to Jim_CreateCommand().antirez1-6/+6
Core commands handling updated to respect the new sematic.
2005-03-05extern int errno declaration removed from the posix extension.antirez1-3/+1
2005-03-04JIM_NOTUSED moved after var declarations blocks.antirez1-2/+2
2005-03-04$id: ..$ strings addedantirez1-0/+21
2005-03-04Added JIM_NOTUSED macro. Macro used where appropriate.antirez1-1/+1
2005-03-03Fixed a minor typo introduced with const-safeness patch.antirez1-6/+9
2005-03-02shell and library splitted. Now jim.c contains only theantirez1-0/+1
language implementation, while the shell is into jimsh.c, that is actually the first example of embedder of Jim. Important changes in jim.h to make Jim play well with extensions/embedders at the same time, and to deal with multiple files. Extensions now must define JIM_EXTENSION before to include jim.h, embedders must define JIM_EMBEDDED before to include jim.h.
2005-03-02removed JIM_EXTENSION define from extensions. Is no longerantirez1-2/+0
useful because only the core has to defile __JIM_CORE__. Added ctype.h in jim-win32com.c.
2005-03-01Indentation style changed to the new Jim standardantirez1-71/+71
4 spaces. No tabs used at all.
2005-02-27aritymin/aritymax information no longer used for C-coded commands.antirez1-5/+5
API changed accordingly.
2005-02-26Initial revisionantirez1-0/+112