[BACK]Return to test2.c CVS log [TXT][DIR] Up to [local] / OpenXM / doc / oxlib

Diff for /OpenXM/doc/oxlib/test2.c between version 1.2 and 1.3

version 1.2, 2000/03/16 07:34:37 version 1.3, 2002/02/25 07:09:02
Line 1 
Line 1 
 /* $OpenXM: OpenXM/doc/oxlib/test2.c,v 1.1 2000/02/08 13:25:41 takayama Exp $ */  /* $OpenXM: OpenXM/doc/oxlib/test2.c,v 1.2 2000/03/16 07:34:37 noro Exp $ */
 #include <asir/ox.h>  #include <asir/ox.h>
   
 char *asir_ox_pop_string();  char *test2_ox_pop_string();
   
 main() {  main() {
   char *s;    char *s;
Line 26  main() {
Line 26  main() {
   asir_ox_push_cmd(SM_executeFunction);    asir_ox_push_cmd(SM_executeFunction);
   */    */
   
   s = asir_ox_pop_string();    s = test2_ox_pop_string();
   printf("%s\n",s);    printf("%s\n",s);
   
   printf("------------------------------------------\n");    printf("------------------------------------------\n");
   asir_ox_push_object_given_by_a_string("12345;");    asir_ox_push_object_given_by_a_string("12345;");
   s = asir_ox_pop_string();    s = test2_ox_pop_string();
   printf("%s\n",s);    printf("%s\n",s);
   
 }  }
Line 62  asir_ox_push_object_given_by_a_string(char *s) {
Line 62  asir_ox_push_object_given_by_a_string(char *s) {
   asir_ox_push_cmd(SM_executeStringByLocalParser);    asir_ox_push_cmd(SM_executeStringByLocalParser);
 }  }
   
 char *asir_ox_pop_string() {  char *test2_ox_pop_string() {
   int size;    int size;
   char *s;    char *s;
   int tag;    int tag;
Line 82  char *asir_ox_pop_string() {
Line 82  char *asir_ox_pop_string() {
         return(s+8);          return(s+8);
   }    }
 }  }
   
 debug_packet(char *p,int size) {  debug_packet(char *p,int size) {
   int i;    int i;
   for (i=0; i<size; i++) {    for (i=0; i<size; i++) {

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>