Adjust coding rules 93/63793/2
authorHwankyu Jhun <h.jhun@samsung.com>
Sun, 27 Mar 2016 22:42:11 +0000 (07:42 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Sun, 27 Mar 2016 23:01:56 +0000 (08:01 +0900)
Change-Id: I607b6ad95077c8daa547611c67c67374529b4ff8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
doc/bundle_doc.h
include/bundle.h
src/bundle_json.c

index 198fecc..263b9d5 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2011 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
  *
  * Licensed under the Apache License, Version 2.0 (the License);
  * you may not use this file except in compliance with the License.
index 202783e..99d8bea 100755 (executable)
@@ -36,16 +36,15 @@ extern "C" {
 # endif
 
 #define API __attribute__((visibility("default")))
-#define likely(x) __builtin_expect(x,1)
-#define unlikely(x) __builtin_expect(x,0)
+#define likely(x) __builtin_expect(x, 1)
+#define unlikely(x) __builtin_expect(x, 0)
 
 /**
  * @brief Enumeration for error code of Bundle.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
-typedef enum
-{
+typedef enum {
        BUNDLE_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
        BUNDLE_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
        BUNDLE_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
@@ -193,8 +192,8 @@ API int bundle_del(bundle *b, const char *key);
 /**
  * @brief Gets a string array from a given key.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- * @remarks            You MUST NOT free or modify the returned string!
- * @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
+ * @remarks    You MUST NOT free or modify the returned string!
+ *             The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
  * @param[in]  b       The bundle object
  * @param[in]  key     The key
  * @param[out] len     The array length
index 3b142f5..3f11e3b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.