[BACK]Return to uuencode.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/uuencode.h between version 1.3 and 1.3.2.5

version 1.3, 2000/09/07 20:27:55 version 1.3.2.5, 2001/09/27 00:15:43
Line 1 
Line 1 
   /*      $OpenBSD$       */
   
 /*  /*
  * Copyright (c) 1999 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without   * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions   * modification, are permitted provided that the following conditions
Line 24 
Line 26 
   
 #ifndef UUENCODE_H  #ifndef UUENCODE_H
 #define UUENCODE_H  #define UUENCODE_H
 int     uuencode(unsigned char *src, unsigned int srclength, char *target, size_t targsize);  int      uuencode(u_char *, u_int, char *, size_t);
 int     uudecode(const char *src, unsigned char *target, size_t targsize);  int      uudecode(const char *, u_char *, size_t);
 void    dump_base64(FILE *fp, unsigned char *data, int len);  void     dump_base64(FILE *, u_char *, int);
 #endif  #endif

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