summaryrefslogtreecommitdiffstats
path: root/generic/tclAbstractList.h
diff options
context:
space:
mode:
authorgriffin <briang42@easystreet.net>2022-08-28 00:10:13 (GMT)
committergriffin <briang42@easystreet.net>2022-08-28 00:10:13 (GMT)
commit31c68fa4e741269ba96b1411eca08a67001079f2 (patch)
treeec21eaf79c1107e1491b3bc407adff6be31311b1 /generic/tclAbstractList.h
parentf9e3b4dd740c0d808fef53f9eba4b44e67734c34 (diff)
downloadtcl-31c68fa4e741269ba96b1411eca08a67001079f2.zip
tcl-31c68fa4e741269ba96b1411eca08a67001079f2.tar.gz
tcl-31c68fa4e741269ba96b1411eca08a67001079f2.tar.bz2
Move all ArithSeries code to it's own file. Sync other changes wil TIP-629.
Diffstat (limited to 'generic/tclAbstractList.h')
-rw-r--r--generic/tclAbstractList.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/generic/tclAbstractList.h b/generic/tclAbstractList.h
index 80ae269..015f6c6 100644
--- a/generic/tclAbstractList.h
+++ b/generic/tclAbstractList.h
@@ -27,12 +27,11 @@ Tcl_AbstractListTypeName(
}
}
-Tcl_Obj *Tcl_NewAbstractListObj(Tcl_Interp *interp, const Tcl_AbstractListType *);
-int Tcl_AbstractListCheckedSetProc(Tcl_Obj *objPtr, Tcl_AbstractListProcType ptype, void **procPtr);
+Tcl_Obj * Tcl_NewAbstractListObj(Tcl_Interp *interp, const Tcl_AbstractListType *);
Tcl_WideInt Tcl_AbstractListObjLength(Tcl_Obj *abstractListPtr);
-Tcl_Obj* Tcl_AbstractListObjIndex(Tcl_Obj *abstractListPtr, Tcl_WideInt index);
-Tcl_Obj* Tcl_AbstractListObjRange(Tcl_Obj *abstractListPtr, Tcl_WideInt fromIdx, Tcl_WideInt toIdx);
-Tcl_Obj* Tcl_AbstractListObjReverse(Tcl_Obj *abstractListPtr);
+Tcl_Obj * Tcl_AbstractListObjIndex(Tcl_Obj *abstractListPtr, Tcl_WideInt index);
+Tcl_Obj * Tcl_AbstractListObjRange(Tcl_Obj *abstractListPtr, Tcl_WideInt fromIdx, Tcl_WideInt toIdx);
+Tcl_Obj * Tcl_AbstractListObjReverse(Tcl_Obj *abstractListPtr);
int Tcl_AbstractListObjGetElements(Tcl_Interp *interp, Tcl_Obj *objPtr, int *objcPtr, Tcl_Obj ***objvPtr);
#endif