diff options
author | rbuj <[email protected]> | 2021-10-27 17:40:17 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-11 15:59:33 +0100 |
commit | 6c55334ad9b03006686e2db6c6f6167677a2f510 (patch) | |
tree | b558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/java-utils.c | |
parent | 85909393571d91b3c267afe5341e54bfae5a6d50 (diff) | |
download | engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2 engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz |
Use a blank line at most
Diffstat (limited to 'src/java-utils.c')
-rw-r--r-- | src/java-utils.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/java-utils.c b/src/java-utils.c index fb95cf5..be6a181 100644 --- a/src/java-utils.c +++ b/src/java-utils.c @@ -29,14 +29,12 @@ #include <glib.h> #include "java-utils.h" - /* * The following code conforms to the JVM specification.(Java 2 Platform) * For further changes to the classfile structure, please update the * following macros. */ - /* Tags that identify structures */ #define CONST_CLASS 7 @@ -63,7 +61,6 @@ #define CONST_DOUBLE_INFO 8 #define CONST_NAMEANDTYPE_INFO 4 - /* represents the utf8 strings in class file */ struct utf_string { @@ -107,7 +104,6 @@ typedef struct { #endif } JavaClassFile; - static JavaClassFile* java_class_file_new (void) { @@ -119,7 +115,6 @@ java_class_file_new (void) return cfile; } - static void java_class_file_free (JavaClassFile *cfile) { @@ -142,7 +137,6 @@ java_class_file_free (JavaClassFile *cfile) g_free (cfile); } - /* The following function loads the utf8 strings and class structures from the * class file. */ static void @@ -231,7 +225,6 @@ load_constant_pool_utfs (JavaClassFile *cfile) #endif } - static char* close_and_exit (JavaClassFile *cfile) { @@ -239,7 +232,6 @@ close_and_exit (JavaClassFile *cfile) return NULL; } - /* This function extracts the package name from a class file */ char* get_package_name_from_class_file (char *fname) @@ -318,7 +310,6 @@ get_package_name_from_class_file (char *fname) return package; } - /* This function consumes a comment from the java file * multiline = TRUE implies that comment is multiline */ static void @@ -360,7 +351,6 @@ consume_comment (int fdesc, } } - /* This function extracts package name from a java file */ char* get_package_name_from_java_file (char *fname) |