omi-eikyo/src/strh.c

19 lines
334 B
C
Raw Normal View History

2017-09-26 13:58:44 -07:00
// Copyright © 2017 Project Golan, all rights reserved.
2017-10-04 17:14:46 -07:00
// See COPYING for more information.
2017-09-26 13:58:44 -07:00
#include "m_str.h"
#include <stdio.h>
// Extern Functions ----------------------------------------------------------|
//
// main
//
int main(int argc, char **argv)
{
if(argc) printf("%u\n", M_StrHash(argv[1]));
return 0;
}
// EOF