summaryrefslogtreecommitdiff
path: root/src/lib/Eet_private.h
diff options
context:
space:
mode:
authorSebastian Dransfeld <sd@tango.flipp.net>2010-07-31 18:54:54 +0000
committerSebastian Dransfeld <sd@tango.flipp.net>2010-07-31 18:54:54 +0000
commit575e72917b4ad4cbb238871b968958c4adac6171 (patch)
treeca8cc2b0ae9b3eb07dbd50ca3014f38a81e9239e /src/lib/Eet_private.h
parent28ccb50c2d7dd291d49a315473af9137cae751f5 (diff)
downloadeet-575e72917b4ad4cbb238871b968958c4adac6171.tar.gz
remove space after *
SVN revision: 50719
Diffstat (limited to 'src/lib/Eet_private.h')
-rw-r--r--src/lib/Eet_private.h110
1 files changed, 55 insertions, 55 deletions
diff --git a/src/lib/Eet_private.h b/src/lib/Eet_private.h
index 9e2221f..fdb4d70 100644
--- a/src/lib/Eet_private.h
+++ b/src/lib/Eet_private.h
@@ -38,18 +38,18 @@ struct _Eet_String
};
struct _Eet_Dictionary
{
- Eet_String * all;
+ Eet_String *all;
- int size;
- int offset;
+ int size;
+ int offset;
- int hash[256];
+ int hash[256];
- int count;
- int total;
+ int count;
+ int total;
- const char * start;
- const char * end;
+ const char *start;
+ const char *end;
};
struct _Eet_Node
@@ -100,60 +100,60 @@ extern int _eet_log_dom_global;
#define CRIT(...) EINA_LOG_DOM_CRIT(_eet_log_dom_global, __VA_ARGS__)
Eet_Dictionary * eet_dictionary_add(void);
-void eet_dictionary_free(Eet_Dictionary * ed);
-int eet_dictionary_string_add(Eet_Dictionary * ed,
- const char * string);
-int eet_dictionary_string_get_size(const Eet_Dictionary * ed,
- int index);
-const char * eet_dictionary_string_get_char(const Eet_Dictionary * ed,
- int index);
-Eina_Bool eet_dictionary_string_get_float(const Eet_Dictionary * ed,
- int index,
- float * result);
-Eina_Bool eet_dictionary_string_get_double(const Eet_Dictionary * ed,
- int index,
- double * result);
-Eina_Bool eet_dictionary_string_get_fp(const Eet_Dictionary * ed,
- int index,
- Eina_F32p32 * result);
-int eet_dictionary_string_get_hash(const Eet_Dictionary * ed,
- int index);
-
-int _eet_hash_gen(const char * key, int hash_size);
-
-const void * eet_identity_check(const void * data_base,
- unsigned int data_length,
- void ** sha1,
- int * sha1_length,
- const void * signature_base,
- unsigned int signature_length,
- const void ** raw_signature_base,
- unsigned int * raw_signature_length,
- int * x509_length);
+void eet_dictionary_free(Eet_Dictionary *ed);
+int eet_dictionary_string_add(Eet_Dictionary *ed,
+ const char * string);
+int eet_dictionary_string_get_size(const Eet_Dictionary *ed,
+ int index);
+const char * eet_dictionary_string_get_char(const Eet_Dictionary *ed,
+ int index);
+Eina_Bool eet_dictionary_string_get_float(const Eet_Dictionary *ed,
+ int index,
+ float * result);
+Eina_Bool eet_dictionary_string_get_double(const Eet_Dictionary *ed,
+ int index,
+ double * result);
+Eina_Bool eet_dictionary_string_get_fp(const Eet_Dictionary *ed,
+ int index,
+ Eina_F32p32 * result);
+int eet_dictionary_string_get_hash(const Eet_Dictionary *ed,
+ int index);
+
+int _eet_hash_gen(const char *key, int hash_size);
+
+const void * eet_identity_check(const void * data_base,
+ unsigned int data_length,
+ void ** sha1,
+ int * sha1_length,
+ const void * signature_base,
+ unsigned int signature_length,
+ const void ** raw_signature_base,
+ unsigned int *raw_signature_length,
+ int * x509_length);
void * eet_identity_compute_sha1(const void * data_base,
unsigned int data_length,
int * sha1_length);
-Eet_Error eet_cipher(const void * data,
- unsigned int size,
- const char * key,
- unsigned int length,
- void ** result,
- unsigned int * result_length);
-Eet_Error eet_decipher(const void * data,
- unsigned int size,
- const char * key,
- unsigned int length,
- void ** result,
- unsigned int * result_length);
-Eet_Error eet_identity_sign(FILE * fp,
- Eet_Key * key);
-void eet_identity_unref(Eet_Key * key);
-void eet_identity_ref(Eet_Key * key);
+Eet_Error eet_cipher(const void * data,
+ unsigned int size,
+ const char * key,
+ unsigned int length,
+ void ** result,
+ unsigned int *result_length);
+Eet_Error eet_decipher(const void * data,
+ unsigned int size,
+ const char * key,
+ unsigned int length,
+ void ** result,
+ unsigned int *result_length);
+Eet_Error eet_identity_sign(FILE * fp,
+ Eet_Key *key);
+void eet_identity_unref(Eet_Key *key);
+void eet_identity_ref(Eet_Key *key);
void eet_node_shutdown(void);
int eet_node_init(void);
Eet_Node * eet_node_new(void);
-void eet_node_free(Eet_Node * node);
+void eet_node_free(Eet_Node *node);
#ifndef PATH_MAX
# define PATH_MAX 4096