bugAVR C Runtime Library - Bugs: bug #23409, Provide an implementation for...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #23409: Provide an implementation for strtok()

Submitter:  Joerg Wunsch <joerg_wunsch>
Submitted:  Wed 28 May 2008 01:06:49 PM UTC
   
 
Category:  Library Severity:  1 - Wish
Priority:  3 - Low Item Group:  libc code
Status:  Fixed Assigned to:  arcanum
Percent Complete:  100% Open/Closed:  Closed
Release:  Any Fixed Release:  1.7.0

Wed 28 May 2008 01:06:49 PM UTC, original submission:  

The library offers strtok_r() but no strtok().  It ought to be
added just for completeness.  The implementation is quite
simple:

/* copyright blah blah */
static char *p;

char *
strtok(char *s, const char *delim)
{
    return strtok_r(s, delim, &p);
}


Joerg Wunsch <joerg_wunsch>
Group administrator

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by arcanum (Updated the item)
  • -email is unavailable- added by joerg_wunsch (Submitted the item)
  •  

    Follow 6 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2008-08-20 arcanum StatusNone Fixed
        Percent Complete0% 100%
        Assigned toNone arcanum
        Open/ClosedOpen Closed
        Fixed ReleaseNone 1.7.0
    2008-08-11 arcanum Priority5 - Normal 3 - Low

    Back to the top

    Powered by Savane 3.13-02a9.
    Corresponding source code