summaryrefslogtreecommitdiff
path: root/src/Tip.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-28 14:12:09 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-28 14:12:09 -0800
commitf7246b984c287b64eb73ee0c303f1b61ee51caf2 (patch)
tree845c12f885a5754f43516aba001988873f12b98e /src/Tip.c
parent02d6fcb26ee1c77c26d98372898d0e48542da5cb (diff)
downloadxorg-lib-libXaw-f7246b984c287b64eb73ee0c303f1b61ee51caf2.tar.gz
Replace calls to index() with strchr()
Use C standard API instead of old BSD equivalent Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/Tip.c')
-rw-r--r--src/Tip.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Tip.c b/src/Tip.c
index 06d53c8..33e5620 100644
--- a/src/Tip.c
+++ b/src/Tip.c
@@ -332,7 +332,7 @@ XawTipExpose(Widget w, XEvent *event, Region region)
ksy = (ksy + XawAbs(ext->max_ink_extent.y));
- while ((nl = index(label, '\n')) != NULL) {
+ while ((nl = strchr(label, '\n')) != NULL) {
XmbDrawString(XtDisplay(w), XtWindow(w), tip->tip.fontset,
gc, tip->tip.left_margin, ksy, label,
(int)(nl - label));
@@ -345,7 +345,7 @@ XawTipExpose(Widget w, XEvent *event, Region region)
tip->tip.left_margin, ksy, label, len);
}
else {
- while ((nl = index(label, '\n')) != NULL) {
+ while ((nl = strchr(label, '\n')) != NULL) {
if (tip->tip.encoding)
XDrawString16(XtDisplay(w), XtWindow(w), gc,
tip->tip.left_margin, y,
@@ -411,7 +411,7 @@ TipLayout(XawTipInfo *info)
XFontSetExtents *ext = XExtentsOfFontSet(fset);
height = ext->max_ink_extent.height;
- if ((nl = index(label, '\n')) != NULL) {
+ if ((nl = strchr(label, '\n')) != NULL) {
/*CONSTCOND*/
while (True) {
int w = XmbTextEscapement(fset, label, (int)(nl - label));
@@ -423,8 +423,8 @@ TipLayout(XawTipInfo *info)
label = nl + 1;
if (*label)
height += ext->max_ink_extent.height;
- if ((nl = index(label, '\n')) == NULL)
- nl = index(label, '\0');
+ if ((nl = strchr(label, '\n')) == NULL)
+ nl = strchr(label, '\0');
}
}
else
@@ -432,7 +432,7 @@ TipLayout(XawTipInfo *info)
}
else {
height = fs->max_bounds.ascent + fs->max_bounds.descent;
- if ((nl = index(label, '\n')) != NULL) {
+ if ((nl = strchr(label, '\n')) != NULL) {
/*CONSTCOND*/
while (True) {
int w = info->tip->tip.encoding ?
@@ -445,8 +445,8 @@ TipLayout(XawTipInfo *info)
label = nl + 1;
if (*label)
height += fs->max_bounds.ascent + fs->max_bounds.descent;
- if ((nl = index(label, '\n')) == NULL)
- nl = index(label, '\0');
+ if ((nl = strchr(label, '\n')) == NULL)
+ nl = strchr(label, '\0');
}
}
else