~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/sha1.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-05 13:28:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2395.
  • Revision ID: olafvdspek@gmail.com-20110805132848-vvwjg6pgwf56xnsd
Use const char* instead of str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * @brief SHA1 Declarations
8
8
 */
9
9
 
10
 
#ifndef DRIZZLED_ALGORITHM_SHA1_H
11
 
#define DRIZZLED_ALGORITHM_SHA1_H
 
10
#pragma once
12
11
 
13
12
#include <stdint.h>
14
13
#include <sys/types.h>
15
14
#include <string.h>
16
15
 
17
 
#include "drizzled/visibility.h"
 
16
#include <drizzled/visibility.h>
18
17
 
19
18
namespace drizzled
20
19
{
57
56
 
58
57
} /* namespace drizzled */
59
58
 
60
 
#endif /* DRIZZLED_ALGORITHM_SHA1_H */