summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2025-09-04 08:24:38 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2025-09-04 08:24:38 (GMT)
commit6b52ee1bdfb4dfb606d27e01ec30e6ac491f3a67 (patch)
treebca416dfed30ca9cc1f101df1324f4b4c13d28e8 /generic/tclEncoding.c
parent22de8964164c65224ffa28e95645d1d914054ae7 (diff)
downloadtcl-6b52ee1bdfb4dfb606d27e01ec30e6ac491f3a67.zip
tcl-6b52ee1bdfb4dfb606d27e01ec30e6ac491f3a67.tar.gz
tcl-6b52ee1bdfb4dfb606d27e01ec30e6ac491f3a67.tar.bz2
Minor indent fixes
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index 4e44745..65f7150 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -4736,13 +4736,13 @@ TclUtfNormalize(
*/
int
Tcl_UtfToNormalizedDString(
- Tcl_Interp *interp, /* Used for error messages. May be NULL */
- const char *bytes, /* Operand encoded in Tcl internal UTF8 */
- Tcl_Size numBytes, /* Length of bytes[], or -1 if NUL terminated */
+ Tcl_Interp *interp, /* Used for error messages. May be NULL */
+ const char *bytes, /* Operand encoded in Tcl internal UTF8 */
+ Tcl_Size numBytes, /* Length of bytes[], or -1 if NUL terminated */
Tcl_UnicodeNormalizationForm normForm, /* TCL_{NFC,NFD,NFKC,NFKC} */
- int profile, /* TCL_ENCODING_PROFILE_{STRICT,REPLACE} */
- Tcl_DString *dsPtr) /* Converted output string in Tcl internal
- UTF8 encoding. Init'ed by function */
+ int profile, /* TCL_ENCODING_PROFILE_{STRICT,REPLACE} */
+ Tcl_DString *dsPtr) /* Converted output string in Tcl internal
+ * UTF8 encoding. Init'ed by function */
{
Tcl_DStringInit(dsPtr);
Tcl_Encoding encoding = Tcl_GetEncoding(interp, "utf-8");
@@ -4783,15 +4783,15 @@ Tcl_UtfToNormalizedDString(
*/
int
Tcl_UtfToNormalized(
- Tcl_Interp *interp, /* Used for error messages. May be NULL */
- const char *bytes, /* Operand encoded in Tcl internal UTF8 */
- Tcl_Size numBytes, /* Length of bytes[], or -1 if NUL terminated */
+ Tcl_Interp *interp, /* Used for error messages. May be NULL */
+ const char *bytes, /* Operand encoded in Tcl internal UTF8 */
+ Tcl_Size numBytes, /* Length of bytes[], or -1 if NUL terminated */
Tcl_UnicodeNormalizationForm normForm, /* TCL_{NFC,NFD,NFKC,NFKC} */
- int profile, /* TCL_ENCODING_PROFILE_{STRICT,REPLACE} */
- char *bufPtr, /* Pointer to output buffer. Must not be NULL. */
- Tcl_Size bufLen, /* Size of bufPtr storage. */
- Tcl_Size *lengthPtr) /* Length of the output string in bytes excluding
- the trailing NUL byte. May be NULL */
+ int profile, /* TCL_ENCODING_PROFILE_{STRICT,REPLACE} */
+ char *bufPtr, /* Pointer to output buffer. Must not be NULL. */
+ Tcl_Size bufLen, /* Size of bufPtr storage. */
+ Tcl_Size *lengthPtr) /* Length of the output string in bytes excluding
+ * the trailing NUL byte. May be NULL */
{
Tcl_Encoding encoding = Tcl_GetEncoding(interp, "utf-8");
if (encoding == NULL) {