// cln/symbol.hashcode().

// General includes.
#include "cl_sysdep.h"

// Specification.
#include "cln/symbol.h"


// Implementation.

#include "cl_offsetof.h"

namespace cln {

#define declare_alignof(where,type)  \
  struct CONCAT(aligndummy,__LINE__) { char slot1; type slot2; }; \
  const unsigned long where = offsetof(CONCAT(aligndummy,__LINE__), slot2);

unsigned long hashcode (const cl_symbol& s)
{
	// Strings don't move in memory, so we can just take the address.
	declare_alignof(string_alignment,cl_heap_string);
	return (unsigned long)(s.pointer)
	       / (string_alignment & -string_alignment); // divide by power of 2
}

}  // namespace cln


syntax highlighted by Code2HTML, v. 0.9.1