Advertisement
Guest User

Untitled

a guest
May 25th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include "Parser.h"
  5. #include "straight_list.h"
  6. #include "Traductor.h"
  7. #include "TDA_Termino.h"
  8.  
  9.  
  10. int main (int argc,char** argv){
  11.  
  12. TDA_TRD traduc;
  13. TrdCrear(&traduc);
  14.  
  15. TrdAgregarCantTraducciones(&traduc,3);
  16.  
  17. printf("cant trad: %d\n",traduc.cant_traducciones_palabra);
  18.  
  19. TrdAgregarTermino(&traduc,1,10,"hola\0");
  20.  
  21. return 0;
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement