Update of /cvsroot/binaryphp/binaryphp
In directory sc8-pr-cvs1:/tmp/cvs-serv22524
Modified Files:
functions.php
Log Message:
adding functions:
base64_encode() by Lateralus
base64_decode() by Lateralus
date() by dweller
Index: functions.php
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/functions.php,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** functions.php 16 Sep 2003 11:49:38 -0000 1.45
--- functions.php 27 Sep 2003 04:55:51 -0000 1.46
***************
*** 83,86 ****
--- 83,89 ----
'gettimeofday' => array(array('sys/time.h','time.h'), 'timedate/gettimeofday.cpp'),
'time' => array('time.h', 'timedate/time.cpp'),
+ 'date' => array('time.h', 'timedate/date.cpp'),
+ 'base64_encode' => array('base/base64.h', 'base/base64_encode.cpp'),
+ 'base64_decode' => array('base/base64.h', 'base/base64_decode.cpp'),
'gethostbyname' => array(array('netinet/in.h', 'arpa/inet.h', 'netdb.h'), 'network/gethostbyname.cpp' ),
null
|