diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-06 16:49:40 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-06 16:49:40 (GMT) |
commit | b5f75d3392ae32955aaef38e3d3af58119179a73 (patch) | |
tree | 404a9941c234e522859ee1818dbe8113dd79c6de /generic/tcl.decls | |
parent | ffc7a9f0b97478b4efb04f82c7414b24c94409af (diff) | |
download | tcl-b5f75d3392ae32955aaef38e3d3af58119179a73.zip tcl-b5f75d3392ae32955aaef38e3d3af58119179a73.tar.gz tcl-b5f75d3392ae32955aaef38e3d3af58119179a73.tar.bz2 |
More regularizing of function names, field names and testing styles
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 61247e6..dfcb822 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -2332,25 +2332,18 @@ declare 631 { # TIP #430 declare 632 { - int TclZipfs_Mount( - Tcl_Interp *interp, - const char *mntpt, - const char *zipname, - const char *passwd) + int TclZipfs_Mount(Tcl_Interp *interp, const char *mountPoint, + const char *zipname, const char *passwd) } declare 633 { - int TclZipfs_Unmount(Tcl_Interp *interp, const char *zipname) + int TclZipfs_Unmount(Tcl_Interp *interp, const char *mountPoint) } declare 634 { Tcl_Obj *TclZipfs_TclLibrary(void) } declare 635 { - int TclZipfs_Mount_Buffer( - Tcl_Interp *interp, - const char *mntpt, - unsigned char *data, - size_t datalen, - int copy) + int TclZipfs_MountBuffer(Tcl_Interp *interp, const char *mountPoint, + unsigned char *data, size_t datalen, int copy) } # ----- BASELINE -- FOR -- 8.7.0 ----- # |