Standalone sscanf() implementation?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • hermes_917@yahoo.com

    #1

    Standalone sscanf() implementation?

    I've been searching in vain for an example implementation of the
    sscanf() fumction. Are there any open-source examples out there? I
    could extract one from a C library if need be, but I'd perfer a
    standalone implementation, if possible.

    I am porting an application to Palm OS, which does not have a complete
    C library.

    Thanks in advance for any information!


    --
    Karl Garrison
    hermes_917@yaho o.com

  • Jack Klein

    #2
    Re: Standalone sscanf() implementation?

    On 21 Jul 2005 14:01:42 -0700, "hermes_917@yah oo.com"
    <kgarrison@pobo x.com> wrote in comp.lang.c:
    [color=blue]
    > I've been searching in vain for an example implementation of the
    > sscanf() fumction. Are there any open-source examples out there? I
    > could extract one from a C library if need be, but I'd perfer a
    > standalone implementation, if possible.
    >
    > I am porting an application to Palm OS, which does not have a complete
    > C library.
    >
    > Thanks in advance for any information![/color]

    The source for the GNU/Linux library is readily available.

    --
    Jack Klein
    Home: http://JK-Technology.Com
    FAQs for
    comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
    comp.lang.c++ http://www.parashift.com/c++-faq-lite/
    alt.comp.lang.l earn.c-c++

    Comment

    • CBFalconer

      #3
      Re: Standalone sscanf() implementation?

      Jack Klein wrote:[color=blue]
      > <kgarrison@pobo x.com> wrote in comp.lang.c:
      >[color=green]
      >> I've been searching in vain for an example implementation of the
      >> sscanf() fumction. Are there any open-source examples out there?
      >> I could extract one from a C library if need be, but I'd perfer a
      >> standalone implementation, if possible.
      >>
      >> I am porting an application to Palm OS, which does not have a
      >> complete C library.
      >>
      >> Thanks in advance for any information![/color]
      >
      > The source for the GNU/Linux library is readily available.[/color]

      The OP might also look at my txtio package, which also extracts
      numerics from streams without needing buffers. No variadic
      functions anywhere.

      <http://cbfalconer.home .att.net/download/txtio.zip>

      --
      Chuck F (cbfalconer@yah oo.com) (cbfalconer@wor ldnet.att.net)
      Available for consulting/temporary embedded and systems.
      <http://cbfalconer.home .att.net> USE worldnet address!

      Comment

      Working...