Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. stebel

    How to download particular html site content

    OK, never mind print $sock "GET /file02.html HTTP/1.0" . "\015\012" x2;
  2. stebel

    How to download particular html site content

    Hi I need to download html site source via perl script. What I've up to now is such a code print "Content-type: text/html\n\n"; use IO::Socket; $sock = IO::Socket::INET->new(PeerAddr => '217.xxx.yyy.zzz', PeerPort => 'http(80)'...
  3. stebel

    FPU + external C file - how to return double

    Hi Rick and thank you for your interest. Actually I was thinking of sth different. Here's a piece of code : C side: #include <stdio.h> extern float test(void) ; void main ( void ) { float p ; p = test () ; printf ( "Double numer is %f \n", p ) ; } Asm side: .386 PUBLIC _test _DATA...
  4. stebel

    FPU + external C file - how to return double

    Hi I'm working on a piece of assembly procedure that would enable me to return a double value (generated in asm module) to C code. Up to now never produced such a code, so would be grateful if you could assist me a bit. I know that I should leave the value in st(0) currently wrote a piece...

Part and Inventory Search

Back
Top