HI,

        I have a functino write in c, like as:

void addvalue ( int a, int b, int *c )
{
  *c = a + b;
}

       in php

<?

  phpinclude ("alexlib");
  addvalue ( 1, 2, c );
  print ( "Value c = $c ");

?>

    what the procedure to make this ?




-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to