Re: in strspn(): what "spn" stands for?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • CBFalconer

    Re: in strspn(): what "spn" stands for?

    regis wrote:
    >
    Does somebody here know what "spn" stands for
    in the name of the function strspn() ?
    Why don't you read the documentation (or source) from whomever
    supplied you that (non-standard) function?

    --
    [mail]: Chuck F (cbfalconer at maineline dot net)
    [page]: <http://cbfalconer.home .att.net>
    Try the download section.

    ** Posted from http://www.teranews.com **
  • Richard Heathfield

    #2
    Re: in strspn(): what &quot;spn&qu ot; stands for?

    CBFalconer said:
    regis wrote:
    >>
    >Does somebody here know what "spn" stands for
    >in the name of the function strspn() ?
    >
    Why don't you read the documentation (or source) from whomever
    supplied you that (non-standard) function?
    What non-standard function?

    --
    Richard Heathfield <http://www.cpax.org.uk >
    Email: -http://www. +rjh@
    Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
    "Usenet is a strange place" - dmr 29 July 1999

    Comment

    • Harald van =?UTF-8?b?RMSzaw==?=

      #3
      Re: in strspn(): what &quot;spn&qu ot; stands for?

      On Wed, 28 May 2008 09:01:32 -0400, CBFalconer wrote:
      regis wrote:
      >Does somebody here know what "spn" stands for in the name of the
      >function strspn() ?
      >
      Why don't you read the documentation (or source) from whomever supplied
      you that (non-standard) function?
      strspn was part of the original C standard, and is part of the current C
      standard. <OTAnd if you have trouble understanding when "whom" is
      appropriate, please just avoid it, at least until you figure it out.

      Comment

      • dj3vande@csclub.uwaterloo.ca.invalid

        #4
        Re: in strspn(): what &quot;spn&qu ot; stands for?

        In article <483D57AC.CE6A0 AC2@yahoo.com>,
        CBFalconer <cbfalconer@mai neline.netwrote :
        >regis wrote:
        >>
        >Does somebody here know what "spn" stands for
        >in the name of the function strspn() ?
        >
        >Why don't you read the documentation (or source) from whomever
        >supplied you that (non-standard) function?
        # 7.21.5.6 The strspn function
        #
        # Synopsis
        #
        # [#1]
        #
        # #include <string.h>
        # size_t strspn(const char *s1, const char *s2);
        #
        # Description
        #
        # [#2] The strspn function computes the length of the maximum
        # initial segment of the string pointed to by s1 which
        # consists entirely of characters from the string pointed to
        # by s2.
        #
        # Returns
        #
        # [#3] The strspn function returns the length of the segment.

        I don't see any description of what "spn" means in there.


        dave

        --
        Dave Vandervies dj3vande at eskimo dot com
        I think it's obvious that pretty != fit for purpose. Except that, I suppose,
        in this case pretty *is* the purpose, and rideability is relatively
        unimportant. --Eric Schwartz in the scary devil monastery

        Comment

        • CBFalconer

          #5
          Re: in strspn(): what &quot;spn&qu ot; stands for?

          Richard Heathfield wrote:
          CBFalconer said:
          >regis wrote:
          >>>
          >>Does somebody here know what "spn" stands for
          >>in the name of the function strspn() ?
          >>
          >Why don't you read the documentation (or source) from whomever
          >supplied you that (non-standard) function?
          >
          What non-standard function?
          Woops - goofed and missed it. Kill my comment.

          --
          [mail]: Chuck F (cbfalconer at maineline dot net)
          [page]: <http://cbfalconer.home .att.net>
          Try the download section.


          ** Posted from http://www.teranews.com **

          Comment

          Working...