Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.
[openssl.git] / crypto / stack / stack.h
index 66ba83ec40ca8bfdce3b6eb72b3db7f96fc3953e..615eb6ff945134d209cfe81b201bdc41484d11b5 100644 (file)
@@ -1,5 +1,5 @@
 /* crypto/stack/stack.h */
-/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
  * This package is an SSL implementation written
@@ -73,8 +73,8 @@ typedef struct stack_st
        int (*comp)();
        } STACK;
 
-#define sk_num(sk)     ((sk)->num)
-#define sk_value(sk,n) ((sk)->data[n])
+#define sk_num(sk)             ((sk)->num)
+#define sk_value(sk,n)         ((sk)->data[n])
 
 #define sk_new_null()  sk_new(NULL)
 #ifndef NOPROTO