473,799 Members | 2,786 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

trim function dumping core

rkk
Hi,

I've written a small trim function to trim away the whitespaces in a
given string. It works well with solaris forte cc compiler, but on
mingw/cygwin gcc it isn't. Here is the code:

char *trim(char *s)
{
char *begin,*end;
begin = s;
/* ltrim start */
while(*begin != '\0') {
if(isspace(*beg in)) {
begin++;
} else {
s = begin;
break;
}
}
/* ltrim end */

/* rtrim start */
end = s + strlen(s) -1;
while( end !=s && isspace(*end) ) {
end--;
}
printf("%c\n",* end);
*(end+1) = '\0';
while(*s && isspace(*s)) s++;
/* rtrim end */
return s;
}

It is failing in the line having the code *(end+1) = '\0';. I think it
may be due to portablility issues & I need this code to work on all
well known platforms & compilers. Any sugesstions/help please?

Thank you.

Regards
Kalyan

Dec 6 '06
31 2923


Hi,
If this code works on Linux, Solaris, and Windows, than the day you wrote
that code was one of your luckiest days ;-))

On Thu, 6 Dec 2006, rkk wrote:
All,

Thank you for your code snippets & help provided. Here is my code which
works on Linux, Solaris & windows:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_STR_LEN 4000

char *trim(char *s);
char *rtrim(char *s);
char *ltrim(char *s);

char *trim(char *s)
{
char t[MAX_STR_LEN];
<SNIPPED>
s = t;

return s;
Here you are returning a pointer to a local variable (the local array t).
The memory has been released when the function returns. The fact that it
still contains your original data and is even accessible at all is a mere
coincidence.
}

Also if you have such arbitrary limitations on the lengths of strings that
you accept (less than MAX_STR_LEN), you should check that the caller does
not pass strings larger than MAX_STR_LEN, and fail if it does so.
Emil

<SNIPPED>

Dec 8 '06 #31
rkk
Hi Dan,
Thanks for pointing it out. Here is the corrected code:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_STR_LEN 4000

char *trim(char *s);
char *rtrim(char *s);
char *ltrim(char *s);

char *trim(char *s)
{
char *begin,*end;
begin = s;

while(*begin != '\0') {
if(isspace(*beg in)) begin++;
else {
s = begin;
break;
}
}

end = s + strlen(s) - 1;
while(end != s && isspace(*end)) end--;
*(end + 1) = '\0';
while (*s && isspace(*s)) s++;
return s;
}
char *ltrim(char *s)
{
char *begin;
begin = s;
while(*begin != '\0') {
if(isspace(*beg in)) begin++;
else {
s = begin;
break;
}
}
return s;
}

char *rtrim(char *s)
{
char *end;
end = s + strlen(s) - 1;
while(end != s && isspace(*end)) end--;
*(end + 1) = '\0';
while (*s && isspace(*s)) s++;
return s;
}

int main()
{
char str[MAX_STR_LEN] = " sample string ";
printf("Before trim str= [%s]\n",str);
strcpy(str,trim (str));
printf("After trim str= [%s]\n",str);
return 0;
}

Regards
RKK
Kohn Emil Dan wrote:
Hi,
If this code works on Linux, Solaris, and Windows, than the day you wrote
that code was one of your luckiest days ;-))

On Thu, 6 Dec 2006, rkk wrote:
All,

Thank you for your code snippets & help provided. Here is my code which
works on Linux, Solaris & windows:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define MAX_STR_LEN 4000

char *trim(char *s);
char *rtrim(char *s);
char *ltrim(char *s);

char *trim(char *s)
{
char t[MAX_STR_LEN];

<SNIPPED>
s = t;

return s;

Here you are returning a pointer to a local variable (the local array t).
The memory has been released when the function returns. The fact that it
still contains your original data and is even accessible at all is a mere
coincidence.
}


Also if you have such arbitrary limitations on the lengths of strings that
you accept (less than MAX_STR_LEN), you should check that the caller does
not pass strings larger than MAX_STR_LEN, and fail if it does so.
Emil

<SNIPPED>
Dec 12 '06 #32

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
4958
by: Ganesh Gella | last post by:
Hi All, I am using g++ on Linux, and my code has lot of vectors each stores a particualr type of structure. (Structure internally had some vectors). When I am trying to push_back an element to a one of the vectors in the parent strutcure, it always core dumps on Linux and HP. On Solaris the same code is working fine without any problem. My code is actually an API, and this problem is seen only by few
11
4742
by: Reply Via Newsgroup | last post by:
Folks, In PHP and some other scripting languages, one has trim() - It removes newline, tabs and blank spaces that might prefix, or suffix a string. Can someone tell me how I can do this in javascript? Much appreciated, randell d.
10
4025
by: ken | last post by:
hello, i'm writing a c program on a linux system. i'm debugging a segmentation fault but i don't want it to dump a core file because the memory footprint of the program is over 300Mb and i don't need it to generate a 300Mb file every time I add a new printf statement to debug the code. can i do something to prevent it from dumping the core file even when it seg faults? (is this a unix/linux thing, or a c thing?) thanks!
17
1442
by: Michael | last post by:
Hi, Could you pleaes let me know when I need to use virtual destctor function in the base class? Thanks in advance, Michael
0
9543
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10488
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10257
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10237
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10029
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9077
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7567
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4144
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.