[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.2.4 and 1.3.2.5

version 1.3.2.4, 2001/05/07 21:09:39 version 1.3.2.5, 2001/09/27 00:15:43
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $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 26 
Line 26 
   
 #ifndef UUENCODE_H  #ifndef UUENCODE_H
 #define UUENCODE_H  #define UUENCODE_H
 int     uuencode(u_char *src, u_int srclength, char *target, size_t targsize);  int      uuencode(u_char *, u_int, char *, size_t);
 int     uudecode(const char *src, u_char *target, size_t targsize);  int      uudecode(const char *, u_char *, size_t);
 void    dump_base64(FILE *fp, u_char *data, int len);  void     dump_base64(FILE *, u_char *, int);
 #endif  #endif

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